depot/third_party/nixpkgs/pkgs/development/python-modules/upb-lib/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

49 lines
982 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pyserial-asyncio-fast,
pytestCheckHook,
pythonOlder,
pytz,
poetry-core,
}:
buildPythonPackage rec {
pname = "upb-lib";
version = "0.5.8";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "gwww";
repo = "upb-lib";
rev = "refs/tags/${version}";
hash = "sha256-YCJl3cIaNmRQ5+GbIDcAvDhI0R4r2AWG2Ba1zmnfbMA=";
};
build-system = [ poetry-core ];
dependencies = [
pyserial-asyncio-fast
pytz
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "upb_lib" ];
disabledTests = [
# AssertionError
"test_create_control_word_all"
];
meta = with lib; {
description = "Library for interacting with UPB PIM";
homepage = "https://github.com/gwww/upb-lib";
changelog = "https://github.com/gwww/upb-lib/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}