nixpkgs/pkgs/development/python-modules/bitarray/default.nix
Martin Weinelt 29edd8a55d python3Packages.bitarray: 3.7.1 -> 3.8.0
https://github.com/ilanschnell/bitarray/raw/3.8.0/CHANGE_LOG

This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:21 +01:00

34 lines
699 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
python,
setuptools,
}:
buildPythonPackage rec {
pname = "bitarray";
version = "3.8.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Pq442v/XfJYhroDBaTLuo/s6SvFB+3zHJNStk+/5IQ0=";
};
build-system = [ setuptools ];
checkPhase = ''
cd $out
${python.interpreter} -c 'import bitarray; bitarray.test()'
'';
pythonImportsCheck = [ "bitarray" ];
meta = {
description = "Efficient arrays of booleans";
homepage = "https://github.com/ilanschnell/bitarray";
changelog = "https://github.com/ilanschnell/bitarray/raw/${version}/CHANGE_LOG";
license = lib.licenses.psfl;
};
}