python3Packages.hlk-sw16: init at 0.0.9

This commit is contained in:
Robert Schütz 2021-06-23 16:29:31 +02:00
parent 970cb0a6dd
commit 8cdec03785
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "hlk-sw16";
version = "0.0.9";
src = fetchFromGitHub {
owner = "jameshilliard";
repo = "hlk-sw16";
rev = version;
sha256 = "010s85nr6xn89i8yvdagg72a97dh1v2pyfqa33v76p9p8xbgh8dz";
};
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "hlk_sw16" ];
meta = with lib; {
description = "Python client for HLK-SW16";
homepage = "https://github.com/jameshilliard/hlk-sw16";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -3252,6 +3252,8 @@ in {
hkdf = callPackage ../development/python-modules/hkdf { };
hlk-sw16 = callPackage ../development/python-modules/hlk-sw16 { };
hmmlearn = callPackage ../development/python-modules/hmmlearn { };
hocr-tools = callPackage ../development/python-modules/hocr-tools { };