Merge pull request #308365 from fabaff/upb-lib-bump

python312Packages.upb-lib: 0.5.4 -> 0.5.6
This commit is contained in:
Fabian Affolter 2024-05-02 09:06:52 +02:00 committed by GitHub
commit 8b2679fdb3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,37 +1,51 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pyserial-asyncio-fast
, pytestCheckHook
, pythonOlder
, fetchPypi
, pyserial-asyncio
, pytz
, poetry-core
}:
buildPythonPackage rec {
pname = "upb-lib";
version = "0.5.4";
format = "setuptools";
version = "0.5.6";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.11";
src = fetchPypi {
pname = "upb_lib";
inherit version;
hash = "sha256-KEnSADj+sQtz37Xbi6fXoe2TN+F5Z9SYnlvCgXtxVnk=";
src = fetchFromGitHub {
owner = "gwww";
repo = "upb-lib";
rev = "refs/tags/${version}";
hash = "sha256-e8LYywKA5lNZ4UYFZTwcfePDWB4cTNz38Tiy4xzOxOs=";
};
propagatedBuildInputs = [
pyserial-asyncio
build-system = [
poetry-core
];
dependencies = [
pyserial-asyncio-fast
pytz
];
# no tests on PyPI, no tags on GitHub
doCheck = false;
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 ];
};