c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
142 lines
3.1 KiB
Nix
142 lines
3.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, python3
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, fetchPypi
|
|
, nix-update-script
|
|
, runtimeShell
|
|
, installShellFiles
|
|
, testers
|
|
, pdm
|
|
}:
|
|
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 rec {
|
|
version = "1.0.1";
|
|
src = fetchFromGitHub {
|
|
owner = "sarugaku";
|
|
repo = "resolvelib";
|
|
rev = "/refs/tags/${version}";
|
|
hash = "sha256-oxyPn3aFPOyx/2aP7Eg2ThtPbyzrFT1JzWqy6GqNbzM=";
|
|
};
|
|
};
|
|
};
|
|
self = python;
|
|
};
|
|
in
|
|
|
|
with python.pkgs;
|
|
buildPythonApplication rec {
|
|
pname = "pdm";
|
|
version = "2.12.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-U82rcnwUaf3Blu/Y1/+EBKPKke5DwKVxRzbyAg0KXd8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pdm-backend
|
|
installShellFiles
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
blinker
|
|
certifi
|
|
cachecontrol
|
|
dep-logic
|
|
findpython
|
|
installer
|
|
packaging
|
|
platformdirs
|
|
pyproject-hooks
|
|
python-dotenv
|
|
requests-toolbelt
|
|
resolvelib
|
|
rich
|
|
shellingham
|
|
tomlkit
|
|
unearth
|
|
virtualenv
|
|
]
|
|
++ cachecontrol.optional-dependencies.filecache
|
|
++ lib.optionals (pythonOlder "3.11") [
|
|
tomli
|
|
]
|
|
++ lib.optionals (pythonOlder "3.10") [
|
|
importlib-metadata
|
|
]
|
|
++ lib.optionals (pythonAtLeast "3.10") [
|
|
truststore
|
|
];
|
|
|
|
makeWrapperArgs = [
|
|
"--set PDM_CHECK_UPDATE 0"
|
|
];
|
|
|
|
preInstall = ''
|
|
# Silence network warning during pypaInstallPhase
|
|
# by disabling latest version check
|
|
export PDM_CHECK_UPDATE=0
|
|
'';
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd pdm \
|
|
--bash <($out/bin/pdm completion bash) \
|
|
--fish <($out/bin/pdm completion fish) \
|
|
--zsh <($out/bin/pdm completion zsh)
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-mock
|
|
pytest-rerunfailures
|
|
pytest-xdist
|
|
pytest-httpserver
|
|
] ++ lib.optional stdenv.isLinux first;
|
|
|
|
pytestFlagsArray = [
|
|
"-m 'not network'"
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
substituteInPlace tests/cli/test_run.py \
|
|
--replace-warn "/bin/bash" "${runtimeShell}"
|
|
'';
|
|
|
|
disabledTests = [
|
|
# fails to locate setuptools (maybe upstream bug)
|
|
"test_convert_setup_py_project"
|
|
# pythonfinder isn't aware of nix's python infrastructure
|
|
"test_use_wrapper_python"
|
|
"test_use_invalid_wrapper_python"
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = pdm;
|
|
};
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pdm-project.org";
|
|
changelog = "https://github.com/pdm-project/pdm/releases/tag/${version}";
|
|
description = "A modern Python package manager with PEP 582 support";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ cpcloud ];
|
|
mainProgram = "pdm";
|
|
};
|
|
}
|