python3Packages.ndms2-client: init at 0.1.1
This commit is contained in:
parent
d6d612ae6f
commit
36691620aa
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/ndms2-client/default.nix
Normal file
30
pkgs/development/python-modules/ndms2-client/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ndms2-client";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "foxel";
|
||||
repo = "python_ndms2_client";
|
||||
rev = version;
|
||||
sha256 = "1sc39d10hm1y8xf3gdqzq1akrx94k590l106242j9bvfqyr8lrk9";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "ndms2_client" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Keenetic NDMS 2.x and 3.x client";
|
||||
homepage = "https://github.com/foxel/python_ndms2_client";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
|
@ -4676,6 +4676,8 @@ in {
|
|||
|
||||
ndjson = callPackage ../development/python-modules/ndjson { };
|
||||
|
||||
ndms2-client = callPackage ../development/python-modules/ndms2-client { };
|
||||
|
||||
ndspy = callPackage ../development/python-modules/ndspy { };
|
||||
|
||||
ndtypes = callPackage ../development/python-modules/ndtypes { };
|
||||
|
|
Loading…
Reference in a new issue