python3Packages.iniconfig: init at 1.0.1
This commit is contained in:
parent
ba4bf93a8e
commit
a563ed4270
2 changed files with 23 additions and 0 deletions
21
pkgs/development/python-modules/iniconfig/default.nix
Normal file
21
pkgs/development/python-modules/iniconfig/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue