My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/bitarray/default.nix

19 lines
438 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
version = "1.2.1";
pname = "bitarray";
src = fetchPypi {
inherit pname version;
sha256 = "1kxrlxfj9nrx512sfwifwl9z4v6ky3qschl0zmk3s3dvc3s7bmif";
};
meta = with lib; {
description = "Efficient arrays of booleans";
homepage = https://github.com/ilanschnell/bitarray;
license = licenses.psfl;
maintainers = [ maintainers.bhipple ];
};
}