Files
nixpkgs/pkgs/development/python-modules/bitlist/default.nix
2025-09-22 11:55:53 +02:00

41 lines
777 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
parts,
pytest-cov-stub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "bitlist";
version = "2.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-mbXSvIUYsnZy/pmZLFXa1bqrwK+JZ2eySuDRCVAs1zk=";
};
pythonRelaxDeps = [ "parts" ];
build-system = [ setuptools ];
dependencies = [ parts ];
nativeCheckInputs = [
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 = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}