3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/bitarray/default.nix

19 lines
438 B
Nix
Raw Normal View History

2018-10-22 22:13:46 +01:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
version = "1.1.0";
2018-10-22 22:13:46 +01:00
pname = "bitarray";
src = fetchPypi {
inherit pname version;
sha256 = "0nv1283qcfilhnb4q6znlijply6lfxwpvp10cr0v33l0qwa86mwz";
2018-10-22 22:13:46 +01:00
};
meta = with lib; {
description = "Efficient arrays of booleans";
homepage = https://github.com/ilanschnell/bitarray;
license = licenses.psfl;
maintainers = [ maintainers.bhipple ];
};
}