pythonPackages.bitarray: init at 0.8.3

This commit is contained in:
Benjamin Hipple
2018-10-22 17:13:46 -04:00
parent f4615bef06
commit f65afcb4c3
3 changed files with 129 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
version = "0.8.3";
pname = "bitarray";
src = fetchPypi {
inherit pname version;
sha256 = "0pl9p4j3dhlyffsqra6h28q7jph6v3hgppg786lkmnqdh45x6305";
};
# Delete once https://github.com/ilanschnell/bitarray/pull/55 is merged
patches = [ ./0001-Buffer-Protocol-Py3.patch ];
meta = with lib; {
description = "Efficient arrays of booleans";
homepage = https://github.com/ilanschnell/bitarray;
license = licenses.psfl;
maintainers = [ maintainers.bhipple ];
};
}