Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
739 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
gitMinimal,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pdm-pep517";
version = "1.1.4";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-f0kSHnC0Lcopb6yWIhDdLaB6OVdfxWcxN61mFjOyzz8=";
};
preCheck = ''
HOME=$TMPDIR
git config --global user.name nobody
git config --global user.email nobody@example.com
'';
nativeCheckInputs = [
pytestCheckHook
gitMinimal
setuptools
];
meta = with lib; {
homepage = "https://github.com/pdm-project/pdm-pep517";
description = "Yet another PEP 517 backend";
license = licenses.mit;
maintainers = with maintainers; [ cpcloud ];
};
}