2022-01-21 21:19:13 +00:00
|
|
|
{ lib, python3, fetchFromGitHub, fetchurl }:
|
2022-01-12 11:16:53 +00:00
|
|
|
let
|
|
|
|
python = python3.override {
|
|
|
|
# override resolvelib due to
|
|
|
|
# 1. pdm requiring a later version of resolvelib
|
|
|
|
# 2. Ansible being packaged as a library
|
|
|
|
# 3. Ansible being unable to upgrade to a later version of resolvelib
|
|
|
|
# see here for more details: https://github.com/NixOS/nixpkgs/pull/155380/files#r786255738
|
|
|
|
packageOverrides = self: super: {
|
|
|
|
resolvelib = super.resolvelib.overridePythonAttrs (attrs: rec {
|
2023-01-04 15:50:56 +00:00
|
|
|
version = "0.9.0";
|
2022-01-12 11:16:53 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sarugaku";
|
|
|
|
repo = "resolvelib";
|
2023-01-04 15:50:56 +00:00
|
|
|
rev = "/refs/tags/${version}";
|
|
|
|
hash = "sha256-xzu8sMNMihJ80vezMdGkOT5Etx08qy3T/TkEn5EAY48=";
|
2022-01-12 11:16:53 +00:00
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
self = python;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
|
|
|
with python.pkgs;
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "pdm";
|
2023-02-23 02:39:45 +00:00
|
|
|
version = "2.4.6";
|
2022-01-12 11:16:53 +00:00
|
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-02-23 02:39:45 +00:00
|
|
|
hash = "sha256-g+fQxq2kwhNXXEJG2n5n4f9GMkmmLsjpHoay152fcVQ=";
|
2022-01-12 11:16:53 +00:00
|
|
|
};
|
|
|
|
|
2023-02-09 20:28:36 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pdm-pep517
|
|
|
|
];
|
|
|
|
|
2022-01-12 11:16:53 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
blinker
|
2022-07-26 14:51:50 +00:00
|
|
|
cachecontrol
|
|
|
|
certifi
|
2022-03-08 18:27:47 +00:00
|
|
|
findpython
|
2022-01-12 11:16:53 +00:00
|
|
|
installer
|
|
|
|
packaging
|
|
|
|
platformdirs
|
2023-01-04 15:50:56 +00:00
|
|
|
pyproject-hooks
|
2022-01-12 11:16:53 +00:00
|
|
|
python-dotenv
|
2022-07-26 14:51:50 +00:00
|
|
|
requests-toolbelt
|
2022-01-12 11:16:53 +00:00
|
|
|
resolvelib
|
2022-07-26 14:51:50 +00:00
|
|
|
rich
|
2022-01-12 11:16:53 +00:00
|
|
|
shellingham
|
|
|
|
tomlkit
|
2022-07-26 14:51:50 +00:00
|
|
|
unearth
|
|
|
|
virtualenv
|
|
|
|
]
|
|
|
|
++ cachecontrol.optional-dependencies.filecache
|
2023-02-09 20:28:36 +00:00
|
|
|
++ lib.optionals (pythonOlder "3.11") [
|
|
|
|
tomli
|
|
|
|
]
|
|
|
|
++ lib.optionals (pythonOlder "3.10") [
|
2022-01-12 11:16:53 +00:00
|
|
|
importlib-metadata
|
|
|
|
];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2022-01-12 11:16:53 +00:00
|
|
|
pytestCheckHook
|
|
|
|
pytest-mock
|
2023-02-09 20:28:36 +00:00
|
|
|
pytest-rerunfailures
|
2022-01-21 21:19:13 +00:00
|
|
|
pytest-xdist
|
|
|
|
];
|
|
|
|
|
|
|
|
pytestFlagsArray = [
|
|
|
|
"-m 'not network'"
|
2022-01-12 11:16:53 +00:00
|
|
|
];
|
|
|
|
|
2022-03-08 18:27:47 +00:00
|
|
|
preCheck = ''
|
|
|
|
export HOME=$TMPDIR
|
|
|
|
'';
|
2022-01-12 11:16:53 +00:00
|
|
|
|
|
|
|
disabledTests = [
|
2022-07-26 14:51:50 +00:00
|
|
|
# fails to locate setuptools (maybe upstream bug)
|
|
|
|
"test_convert_setup_py_project"
|
2022-01-12 11:16:53 +00:00
|
|
|
# pythonfinder isn't aware of nix's python infrastructure
|
|
|
|
"test_use_wrapper_python"
|
2022-07-26 14:51:50 +00:00
|
|
|
"test_use_invalid_wrapper_python"
|
2022-01-12 11:16:53 +00:00
|
|
|
];
|
|
|
|
|
2023-02-23 02:42:00 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2022-01-12 11:16:53 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://pdm.fming.dev";
|
2023-02-09 20:28:36 +00:00
|
|
|
changelog = "https://github.com/pdm-project/pdm/releases/tag/${version}";
|
2022-01-12 11:16:53 +00:00
|
|
|
description = "A modern Python package manager with PEP 582 support";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ cpcloud ];
|
|
|
|
};
|
|
|
|
}
|