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

  src = fetchPypi {
    inherit pname version;
    sha256 = "4f8706b651243c9faa981f075bcbdef2fab83e9b9bc9211ed2cb5849f9a68342";
  };

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