python3Packages.iniconfig: init at 1.0.1

This commit is contained in:
Jonathan Ringer 2020-08-16 12:35:39 -07:00
parent ba4bf93a8e
commit a563ed4270
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0
2 changed files with 23 additions and 0 deletions

View file

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

View file

@ -3224,6 +3224,8 @@ in {
itypes = callPackage ../development/python-modules/itypes { };
iniconfig = callPackage ../development/python-modules/iniconfig { };
iniparse = callPackage ../development/python-modules/iniparse { };
intreehooks = callPackage ../development/python-modules/intreehooks { };