1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 version = "1.2.1";
5 pname = "bitarray";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1kxrlxfj9nrx512sfwifwl9z4v6ky3qschl0zmk3s3dvc3s7bmif";
10 };
11
12 meta = with lib; {
13 description = "Efficient arrays of booleans";
14 homepage = https://github.com/ilanschnell/bitarray;
15 license = licenses.psfl;
16 maintainers = [ maintainers.bhipple ];
17 };
18}