nixpkgs/pkgs/development/python-modules/bitarray/default.nix

19 lines
450 B
Nix
Raw Normal View History

2018-10-22 23:13:46 +02:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
2019-10-24 08:47:26 +02:00
version = "1.0.1";
2018-10-22 23:13:46 +02:00
pname = "bitarray";
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:26 +02:00
sha256 = "3eb500f8b9cde19e14472fcbee0195dbf0fbac006f8406a03f0cfb495dff20a0";
2018-10-22 23:13:46 +02:00
};
meta = with lib; {
description = "Efficient arrays of booleans";
homepage = https://github.com/ilanschnell/bitarray;
license = licenses.psfl;
maintainers = [ maintainers.bhipple ];
};
}