nixpkgs/pkgs/development/python-modules/upb-lib/default.nix
2022-01-31 17:46:06 -08:00

37 lines
681 B
Nix

{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, pyserial-asyncio
, pytz
}:
buildPythonPackage rec {
pname = "upb-lib";
version = "0.5.1";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-iXwJPe6YYG2TWiQ/dXbeIiadzGMgFzZa6Now692r+t0=";
};
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 ];
};
}