summary refs log tree commit diff
path: root/pkgs/development/python-modules/bitarray/default.nix
blob: 78372598096f8bff5999fe22120baf282f8166a5 (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.0.1";
  pname = "bitarray";

  src = fetchPypi {
    inherit pname version;
    sha256 = "3eb500f8b9cde19e14472fcbee0195dbf0fbac006f8406a03f0cfb495dff20a0";
  };

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