mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
38 lines
698 B
Nix
38 lines
698 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, pyserial-asyncio
|
|
, pytz
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "upb-lib";
|
|
version = "0.5.3";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "upb_lib";
|
|
inherit version;
|
|
hash = "sha256-I1lnIr8ptDCyK8r0bvFWFPUGRwoMsQcNnSCSwzdt1Bc=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|