Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / iniconfig / default.nix
blobb9c6e8e205fa39f3ab05d098ba64668c5fd43809
1 { lib
2 , buildPythonPackage
3 , substituteAll
4 , fetchPypi
5 , hatch-vcs
6 , hatchling
7 }:
9 buildPythonPackage rec {
10   pname = "iniconfig";
11   version = "2.0.0";
12   format = "pyproject";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-LZHhNb9y0xpBCxfBbaYQqCy1X2sEd9GpAhNLJKRVuLM=";
17   };
19   nativeBuildInputs = [
20     hatchling
21   ];
23   patches = [
24     # Cannot use hatch-vcs, due to an inifinite recursion
25     (substituteAll {
26       src = ./version.patch;
27       inherit version;
28     })
29   ];
31   pythonImportsCheck = [
32     "iniconfig"
33   ];
35   # Requires pytest, which in turn requires this package - causes infinite
36   # recursion. See also: https://github.com/NixOS/nixpkgs/issues/63168
37   doCheck = false;
39   meta = with lib; {
40     description = "brain-dead simple parsing of ini files";
41     homepage = "https://github.com/pytest-dev/iniconfig";
42     license = licenses.mit;
43     maintainers = with maintainers; [ jonringer ];
44   };