python3Packages.nessclient: init at 0.9.16b2

This commit is contained in:
Fabian Affolter
2021-11-17 09:40:09 +01:00
parent 98f26c237d
commit 9d830c1496
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, click
, fetchFromGitHub
, justbackoff
, pythonOlder
}:
buildPythonPackage rec {
pname = "nessclient";
version = "0.9.16b2";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "nickw444";
repo = pname;
rev = version;
sha256 = "1g3q9bv1nn1b8n6bklc05k8pac4cndzfxfr7liky0gnnbri15k81";
};
propagatedBuildInputs = [
justbackoff
click
];
# Tests are not shipped
doCheck = false;
pythonImportsCheck = [
"nessclient"
];
meta = with lib; {
description = "Python implementation/abstraction of the Ness D8x / D16x Serial Interface ASCII protocol";
homepage = "https://github.com/nickw444/nessclient";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -5054,6 +5054,8 @@ in {
neo = callPackage ../development/python-modules/neo { };
nessclient = callPackage ../development/python-modules/nessclient { };
nest-asyncio = callPackage ../development/python-modules/nest-asyncio { };
nestedtext = callPackage ../development/python-modules/nestedtext { };