summary refs log tree commit diff
path: root/pkgs/development/python-modules/bitarray/default.nix
blob: 3c84366c9d1367ea42f58b9c3d41b45ccebea487 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  version = "1.1.0";
  pname = "bitarray";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0nv1283qcfilhnb4q6znlijply6lfxwpvp10cr0v33l0qwa86mwz";
  };

  meta = with lib; {
    description = "Efficient arrays of booleans";
    homepage = https://github.com/ilanschnell/bitarray;
    license = licenses.psfl;
    maintainers = [ maintainers.bhipple ];
  };
}