python310Packages.build: 0.9.0 -> 0.10.0

https://github.com/pypa/build/blob/0.10.0/CHANGELOG.rst
This commit is contained in:
Martin Weinelt 2023-02-26 11:44:01 +00:00
parent eec8bd84c0
commit 3b6781a68a

View File

@ -2,10 +2,10 @@
, stdenv
, buildPythonPackage
, fetchFromGitHub
, flit-core
, filelock
, importlib-metadata
, packaging
, pep517
, pyproject-hooks
, pytest-mock
, pytest-rerunfailures
, pytest-xdist
@ -18,7 +18,7 @@
buildPythonPackage rec {
pname = "build";
version = "0.9.0";
version = "0.10.0";
format = "pyproject";
disabled = pythonOlder "3.6";
@ -27,28 +27,28 @@ buildPythonPackage rec {
owner = "pypa";
repo = pname;
rev = version;
hash = "sha256-iQvfZC/h9SbagExoG8dJ2A8G8gVRdMaRvEy9QcQIN5I=";
hash = "sha256-kXFrfTb7+68EV+gSENL81IFSR+ue7Fl6R2gsuFFBJhI=";
};
nativeBuildInputs = [
setuptools
flit-core
];
propagatedBuildInputs = [
packaging
pep517
pyproject-hooks
] ++ lib.optionals (pythonOlder "3.11") [
tomli
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];
nativeCheckInputs = [
filelock
toml
pytest-mock
pytest-rerunfailures
pytest-xdist
pytestCheckHook
setuptools
toml
];
pytestFlagsArray = [
@ -83,6 +83,7 @@ buildPythonPackage rec {
is a simple build tool and does not perform any dependency management.
'';
homepage = "https://github.com/pypa/build";
changelog = "https://github.com/pypa/build/blob/${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};