Merge pull request #88665 from r-ryantm/auto-update/python2.7-bitarray

python27Packages.bitarray: 1.2.1 -> 1.2.2
This commit is contained in:
Benjamin Hipple 2020-05-23 14:37:35 -04:00 committed by GitHub
commit 6b66f9c865
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 ];
};