2018-10-22 22:13:46 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bitarray";
|
2021-01-21 09:51:07 +00:00
|
|
|
version = "1.6.3";
|
2018-10-22 22:13:46 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-21 09:51:07 +00:00
|
|
|
sha256 = "ae27ce4bef4f35b4cc2c0b0d9cf02ed49eee567c23d70cb5066ad215f9b62b3c";
|
2018-10-22 22:13:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Efficient arrays of booleans";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/ilanschnell/bitarray";
|
2020-05-23 08:03:01 +01:00
|
|
|
changelog = "https://github.com/ilanschnell/bitarray/blob/master/CHANGE_LOG";
|
2018-10-22 22:13:46 +01:00
|
|
|
license = licenses.psfl;
|
|
|
|
maintainers = [ maintainers.bhipple ];
|
|
|
|
};
|
|
|
|
}
|