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

19 lines
450 B
Nix
Raw Normal View History

2018-10-22 22:13:46 +01:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
2019-12-19 19:31:06 +00:00
version = "1.2.0";
2018-10-22 22:13:46 +01:00
pname = "bitarray";
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:06 +00:00
sha256 = "4f8706b651243c9faa981f075bcbdef2fab83e9b9bc9211ed2cb5849f9a68342";
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 ];
};
}