mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-18 14:41:18 +00:00
python3Packages.pyenvertechevt800: init at 0.2.4
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
pytest-asyncio,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "pyenvertechevt800";
|
||||
version = "0.2.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "daniel-bergmann-00";
|
||||
repo = "pyenvertech-evt800";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-JUXPyBnmwcKtGk2PjhKAaPZXnvl8Vkx9hrb7NurGvHo=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pyenvertechevt800" ];
|
||||
|
||||
meta = {
|
||||
description = "Library to interface an Envertech EVT-800 device";
|
||||
homepage = "https://github.com/daniel-bergmann-00/pyenvertech-evt800";
|
||||
changelog = "https://github.com/daniel-bergmann-00/pyenvertech-evt800/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
})
|
||||
@@ -14468,6 +14468,8 @@ self: super: with self; {
|
||||
|
||||
pyenphase = callPackage ../development/python-modules/pyenphase { };
|
||||
|
||||
pyenvertechevt800 = callPackage ../development/python-modules/pyenvertechevt800 { };
|
||||
|
||||
pyenvisalink = callPackage ../development/python-modules/pyenvisalink { };
|
||||
|
||||
pyephember2 = callPackage ../development/python-modules/pyephember2 { };
|
||||
|
||||
Reference in New Issue
Block a user