depot/third_party/nixpkgs/pkgs/development/python-modules/iniconfig/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

42 lines
932 B
Nix

{
lib,
buildPythonPackage,
substituteAll,
fetchPypi,
hatch-vcs,
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 = with maintainers; [ jonringer ];
};
}