commit
5bf179da30
1 changed files with 12 additions and 8 deletions
|
@ -24,15 +24,19 @@ in
|
||||||
with python.pkgs;
|
with python.pkgs;
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "pdm";
|
pname = "pdm";
|
||||||
version = "2.3.4";
|
version = "2.4.3";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-zaSNM5Ey4oI2MtUPYBHG0PCMgJdasVatwkjaRBrT1RQ=";
|
hash = "sha256-Gp8ju26XX0A2+LX+7b9OuEBJx4qUwR2tNUq+Chj56q4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pdm-pep517
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
blinker
|
blinker
|
||||||
cachecontrol
|
cachecontrol
|
||||||
|
@ -40,9 +44,6 @@ buildPythonApplication rec {
|
||||||
findpython
|
findpython
|
||||||
installer
|
installer
|
||||||
packaging
|
packaging
|
||||||
pdm-pep517
|
|
||||||
pep517
|
|
||||||
pip
|
|
||||||
platformdirs
|
platformdirs
|
||||||
pyproject-hooks
|
pyproject-hooks
|
||||||
python-dotenv
|
python-dotenv
|
||||||
|
@ -50,20 +51,22 @@ buildPythonApplication rec {
|
||||||
resolvelib
|
resolvelib
|
||||||
rich
|
rich
|
||||||
shellingham
|
shellingham
|
||||||
tomli
|
|
||||||
tomlkit
|
tomlkit
|
||||||
unearth
|
unearth
|
||||||
virtualenv
|
virtualenv
|
||||||
]
|
]
|
||||||
++ cachecontrol.optional-dependencies.filecache
|
++ cachecontrol.optional-dependencies.filecache
|
||||||
++ lib.optionals (pythonOlder "3.8") [
|
++ lib.optionals (pythonOlder "3.11") [
|
||||||
|
tomli
|
||||||
|
]
|
||||||
|
++ lib.optionals (pythonOlder "3.10") [
|
||||||
importlib-metadata
|
importlib-metadata
|
||||||
typing-extensions
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
pytest-mock
|
pytest-mock
|
||||||
|
pytest-rerunfailures
|
||||||
pytest-xdist
|
pytest-xdist
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -85,6 +88,7 @@ buildPythonApplication rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://pdm.fming.dev";
|
homepage = "https://pdm.fming.dev";
|
||||||
|
changelog = "https://github.com/pdm-project/pdm/releases/tag/${version}";
|
||||||
description = "A modern Python package manager with PEP 582 support";
|
description = "A modern Python package manager with PEP 582 support";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ cpcloud ];
|
maintainers = with maintainers; [ cpcloud ];
|
||||||
|
|
Loading…
Reference in a new issue