3
0
Fork 0
forked from mirrors/nixpkgs

python27Packages.bitarray: 1.2.1 -> 1.2.2

This commit is contained in:
R. RyanTM 2020-05-23 07:03:01 +00:00 committed by Benjamin Hipple
parent 5de1e307f2
commit d5386fb019

View file

@ -1,17 +1,18 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
version = "1.2.1";
pname = "bitarray";
version = "1.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "1kxrlxfj9nrx512sfwifwl9z4v6ky3qschl0zmk3s3dvc3s7bmif";
sha256 = "0m29k3lq37v53pczyr2d5mr3xdh2kv31g2yfnfx8m1ivxvy9z9i7";
};
meta = with lib; {
description = "Efficient arrays of booleans";
homepage = "https://github.com/ilanschnell/bitarray";
changelog = "https://github.com/ilanschnell/bitarray/blob/master/CHANGE_LOG";
license = licenses.psfl;
maintainers = [ maintainers.bhipple ];
};