3
0
Fork 0
forked from mirrors/nixpkgs

python3.pkgs.pyproject-metadata: init at 0.5.0

This commit is contained in:
Frederik Rietdijk 2022-07-05 16:18:12 +02:00 committed by Martin Weinelt
parent c2e54388d5
commit 941663db0b
2 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,44 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, wheel
, packaging
, pytestCheckHook
, tomli
}:
buildPythonPackage rec {
pname = "pyproject-metadata";
version = "0.5.0";
format = "pyproject";
src = fetchPypi rec {
inherit pname version;
hash = "sha256-6YN9I3V8XJ//+19/N8+be8LZc30OlZt/XV8YmVFulww=";
};
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
packaging
];
checkInputs = [
pytestCheckHook
tomli
];
# Many broken tests, and missing test files
doCheck = false;
meta = with lib; {
description = "PEP 621 metadata parsing";
homepage = "https://github.com/FFY00/python-pyproject-metadata";
license = licenses.mit;
maintainers = with maintainers; [ fridh ];
};
}

View file

@ -8250,6 +8250,8 @@ in {
pyproj = callPackage ../development/python-modules/pyproj { };
pyproject-metadata = callPackage ../development/python-modules/pyproject-metadata { };
pyprosegur = callPackage ../development/python-modules/pyprosegur { };
pyptlib = callPackage ../development/python-modules/pyptlib { };