forked from mirrors/nixpkgs
python3Packages.iniconfig: init at 1.0.1
This commit is contained in:
parent
ba4bf93a8e
commit
a563ed4270
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 { };
|
itypes = callPackage ../development/python-modules/itypes { };
|
||||||
|
|
||||||
|
iniconfig = callPackage ../development/python-modules/iniconfig { };
|
||||||
|
|
||||||
iniparse = callPackage ../development/python-modules/iniparse { };
|
iniparse = callPackage ../development/python-modules/iniparse { };
|
||||||
|
|
||||||
intreehooks = callPackage ../development/python-modules/intreehooks { };
|
intreehooks = callPackage ../development/python-modules/intreehooks { };
|
||||||
|
|
Loading…
Reference in a new issue