summary refs log blame commit diff
path: root/pkgs/development/python-modules/bitarray/default.nix
blob: d89ab9c3107ce88acfefe376b87a79bb43bef750 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                       
                    



                          
                                                                    

    






                                                       
{ lib, buildPythonPackage, fetchPypi }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1kxrlxfj9nrx512sfwifwl9z4v6ky3qschl0zmk3s3dvc3s7bmif";
  };

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