mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
python3Packages.hlk-sw16: init at 0.0.9
This commit is contained in:
parent
970cb0a6dd
commit
8cdec03785
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/hlk-sw16/default.nix
Normal file
28
pkgs/development/python-modules/hlk-sw16/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue