summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/zigpy-znp
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/zigpy-znp')
-rw-r--r--pkgs/development/python-modules/zigpy-znp/default.nix27
1 files changed, 15 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/zigpy-znp/default.nix b/pkgs/development/python-modules/zigpy-znp/default.nix
index 2543d0675852..894539a3e2e0 100644
--- a/pkgs/development/python-modules/zigpy-znp/default.nix
+++ b/pkgs/development/python-modules/zigpy-znp/default.nix
@@ -3,32 +3,34 @@
, asynctest
, buildPythonPackage
, coloredlogs
-, coveralls
, fetchFromGitHub
+, jsonschema
, pyserial
, pyserial-asyncio
, pytest-asyncio
, pytest-mock
, pytest-timeout
-, pytestcov
, pytestCheckHook
+, pythonOlder
, voluptuous
-, zigpy }:
+, zigpy
+}:
buildPythonPackage rec {
pname = "zigpy-znp";
- version = "0.4.0";
+ version = "0.5.1";
src = fetchFromGitHub {
- owner = "zha-ng";
- repo = "zigpy-znp";
+ owner = "zigpy";
+ repo = pname;
rev = "v${version}";
- sha256 = "1g5jssdnibhb4i4k1js9iy9w40cipf1gdnyp847x0bv6wblzx8rl";
+ sha256 = "152d803jfrvkj4namni41fnbbnq85wd7zsqjhmkwrrmn2gvqjiln";
};
propagatedBuildInputs = [
async-timeout
coloredlogs
+ jsonschema
pyserial
pyserial-asyncio
voluptuous
@@ -36,18 +38,19 @@ buildPythonPackage rec {
];
checkInputs = [
- asynctest
- coveralls
pytest-asyncio
pytest-mock
pytest-timeout
- pytestcov
pytestCheckHook
+ ] ++ lib.optionals (pythonOlder "3.8") [
+ asynctest
];
+ pythonImportsCheck = [ "zigpy_znp" ];
+
meta = with lib; {
- description = "A library for zigpy which communicates with TI ZNP radios";
- homepage = "https://github.com/zha-ng/zigpy-znp";
+ description = "Python library for zigpy which communicates with TI ZNP radios";
+ homepage = "https://github.com/zigpy/zigpy-znp";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ mvnetbiz ];
platforms = platforms.linux;