python313Packages.bitlist: 1.2.0 -> 2.0.0

Changed files
+8 -15
pkgs
development
python-modules
bitlist
+8 -15
pkgs/development/python-modules/bitlist/default.nix
···
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" ];
-
pythonRelaxDeps = [ "parts" ];
+
build-system = [ setuptools ];
dependencies = [ parts ];
nativeCheckInputs = [
-
pytestCheckHook
pytest-cov-stub
+
pytestCheckHook
];
pythonImportsCheck = [ "bitlist" ];
···
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 ];
};
}