ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pyproject-metadata / default.nix
blob5cd5b92073bc8df501d76ae2bd8ff4b856c328dd
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , wheel
6 , packaging
7 , pytestCheckHook
8 , tomli
9 }:
11 buildPythonPackage rec {
12   pname = "pyproject-metadata";
13   version = "0.5.0";
14   format = "pyproject";
16   src = fetchPypi rec {
17     inherit pname version;
18     hash = "sha256-6YN9I3V8XJ//+19/N8+be8LZc30OlZt/XV8YmVFulww=";
19   };
21   nativeBuildInputs = [
22     setuptools
23     wheel
24   ];
26   propagatedBuildInputs = [
27     packaging
28   ];
30   checkInputs = [
31     pytestCheckHook
32     tomli
33   ];
35   # Many broken tests, and missing test files
36   doCheck = false;
38   meta = with lib; {
39     description = "PEP 621 metadata parsing";
40     homepage = "https://github.com/FFY00/python-pyproject-metadata";
41     license = licenses.mit;
42     maintainers = with maintainers; [ fridh ];
43   };