0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
41 lines
775 B
Nix
41 lines
775 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, git
|
|
, pytestCheckHook
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pdm-pep517";
|
|
version = "1.0.6";
|
|
format = "pyproject";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-pEB3A9UPpNZxODo1SGiwWhMGDBvzgmTLtd3Jpz5KHcU=";
|
|
};
|
|
|
|
preCheck = ''
|
|
HOME=$TMPDIR
|
|
|
|
git config --global user.name nobody
|
|
git config --global user.email nobody@example.com
|
|
'';
|
|
|
|
checkInputs = [
|
|
setuptools
|
|
pytestCheckHook
|
|
git
|
|
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 ];
|
|
};
|
|
}
|