python3Packages.upb-lib: init at 0.4.12
This commit is contained in:
parent
4d420f27eb
commit
06a8926444
36
pkgs/development/python-modules/upb-lib/default.nix
Normal file
36
pkgs/development/python-modules/upb-lib/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, pyserial-asyncio
|
||||
, pytz
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "upb-lib";
|
||||
version = "0.4.12";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "e668055d9c389aefd09203afb96a950a320095f225ef0a1aa611e592db92a71b";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pyserial-asyncio
|
||||
pytz
|
||||
];
|
||||
|
||||
# no tests on PyPI, no tags on GitHub
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "upb_lib" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for interacting with UPB PIM";
|
||||
homepage = "https://github.com/gwww/upb-lib";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -8837,6 +8837,8 @@ in {
|
||||
|
||||
upass = callPackage ../development/python-modules/upass { };
|
||||
|
||||
upb-lib = callPackage ../development/python-modules/upb-lib { };
|
||||
|
||||
update_checker = callPackage ../development/python-modules/update_checker { };
|
||||
|
||||
update-copyright = callPackage ../development/python-modules/update-copyright { };
|
||||
|
Loading…
Reference in New Issue
Block a user