python313Packages.bitlist: 1.2.0 -> 2.0.0

This commit is contained in:
Fabian Affolter
2025-09-22 11:46:42 +02:00
parent e69666e24a
commit 33fde3aa45
@@ -2,38 +2,31 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
parts,
pytestCheckHook,
pytest-cov-stub,
pythonOlder,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "bitlist";
version = "1.2.0";
version = "2.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-+/rBno+OH7yEiN4K9VC6BCEPuOv8nNp0hU+fWegjqPw=";
hash = "sha256-mbXSvIUYsnZy/pmZLFXa1bqrwK+JZ2eySuDRCVAs1zk=";
};
build-system = [
setuptools
wheel
];
pythonRelaxDeps = [ "parts" ];
build-system = [ setuptools ];
dependencies = [ parts ];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "bitlist" ];
@@ -41,7 +34,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library for working with little-endian list representation of bit strings";
homepage = "https://github.com/lapets/bitlist";
license = with licenses; [ mit ];
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}