Merge pull request #102821 from r-ryantm/auto-update/python2.7-iniconfig

python27Packages.iniconfig: 1.0.1 -> 1.1.1
This commit is contained in:
Mario Rodas 2020-11-07 10:38:44 -05:00 committed by GitHub
commit 960b023b05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "iniconfig";
version = "1.0.1";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "0s9z9n4603fdpv2vzh6ddzfgsjmb09n6qalkjl2xwrss6n4jzyg5";
sha256 = "bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32";
};
doCheck = false; # avoid circular import with pytest
@ -14,7 +14,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "brain-dead simple parsing of ini files";
homepage = "https://github.com/CHANGE/iniconfig/";
homepage = "https://github.com/RonnyPfannschmidt/iniconfig";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};