My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/hlk-sw16/default.nix

28 lines
590 B

{ 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 ];
};
}