about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/iniconfig/default.nix
blob: a8a4a611fee6ea11dff4def13708cb3ff9c9ef7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi, setuptools-scm }:

buildPythonPackage rec {
  pname = "iniconfig";
  version = "1.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32";
  };

  nativeBuildInputs = [ setuptools-scm ];

  doCheck = false; # avoid circular import with pytest
  pythonImportsCheck = [ "iniconfig" ];

  meta = with lib; {
    description = "brain-dead simple parsing of ini files";
    homepage = "https://github.com/pytest-dev/iniconfig";
    license = licenses.mit;
    maintainers = with maintainers; [ jonringer ];
  };
}