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

20 lines
522 B
Nix
Raw Normal View History

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