ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pdm-pep517 / default.nix
blob156226536bcfcb70c6a4906edc5ebb68767ef1f3
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , git
6 , pytestCheckHook
7 , setuptools
8 }:
10 buildPythonPackage rec {
11   pname = "pdm-pep517";
12   version = "1.0.4";
13   format = "pyproject";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "sha256-OS+MK0fG7CBVDLjhniS529Jzc0E/BntW7Ndfl2f5MBU=";
19   };
21   preCheck = ''
22     HOME=$TMPDIR
24     git config --global user.name nobody
25     git config --global user.email nobody@example.com
26   '';
28   checkInputs = [
29     setuptools
30     pytestCheckHook
31     git
32     setuptools
33   ];
35   meta = with lib; {
36     homepage = "https://github.com/pdm-project/pdm-pep517";
37     description = "Yet another PEP 517 backend.";
38     license = licenses.mit;
39     maintainers = with maintainers; [ cpcloud ];
40   };