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