2018-10-22 14:13:46 -07:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bitarray";
|
2021-03-26 18:17:18 -07:00
|
|
|
version = "1.8.1";
|
2018-10-22 14:13:46 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-26 18:17:18 -07:00
|
|
|
sha256 = "e02f79fba7a470d438eb39017d503498faaf760b17b6b46af1a9de12fd58d311";
|
2018-10-22 14:13:46 -07:00
|
|
|
};
|
|
|
|
|
2021-03-02 16:13:29 -08:00
|
|
|
pythonImportsCheck = [ "bitarray" ];
|
|
|
|
|
2018-10-22 14:13:46 -07:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Efficient arrays of booleans";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/ilanschnell/bitarray";
|
2020-05-23 00:03:01 -07:00
|
|
|
changelog = "https://github.com/ilanschnell/bitarray/blob/master/CHANGE_LOG";
|
2018-10-22 14:13:46 -07:00
|
|
|
license = licenses.psfl;
|
|
|
|
maintainers = [ maintainers.bhipple ];
|
|
|
|
};
|
|
|
|
}
|