41 lines
891 B
Nix
41 lines
891 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
substituteAll,
|
|
fetchPypi,
|
|
hatchling,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "iniconfig";
|
|
version = "2.0.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-LZHhNb9y0xpBCxfBbaYQqCy1X2sEd9GpAhNLJKRVuLM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ hatchling ];
|
|
|
|
patches = [
|
|
# Cannot use hatch-vcs, due to an inifinite recursion
|
|
(substituteAll {
|
|
src = ./version.patch;
|
|
inherit version;
|
|
})
|
|
];
|
|
|
|
pythonImportsCheck = [ "iniconfig" ];
|
|
|
|
# Requires pytest, which in turn requires this package - causes infinite
|
|
# recursion. See also: https://github.com/NixOS/nixpkgs/issues/63168
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "brain-dead simple parsing of ini files";
|
|
homepage = "https://github.com/pytest-dev/iniconfig";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|