1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "iniconfig";
5 version = "1.0.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0s9z9n4603fdpv2vzh6ddzfgsjmb09n6qalkjl2xwrss6n4jzyg5";
10 };
11
12 doCheck = false; # avoid circular import with pytest
13 pythonImportsCheck = [ "iniconfig" ];
14
15 meta = with lib; {
16 description = "brain-dead simple parsing of ini files";
17 homepage = "https://github.com/CHANGE/iniconfig/";
18 license = licenses.mit;
19 maintainers = with maintainers; [ jonringer ];
20 };
21}