depot/pkgs/development/tools/devpi-client/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

83 lines
1.5 KiB
Nix

{
lib,
devpi-server,
git,
glibcLocales,
python3,
fetchPypi,
nix-update-script,
}:
python3.pkgs.buildPythonApplication rec {
pname = "devpi-client";
version = "7.2.0";
pyproject = true;
src = fetchPypi {
pname = "devpi-client";
inherit version;
hash = "sha256-wUM2hFjDh4unvuah2bQY4uZZVxo4VmFPWNdriigmnXs=";
};
build-system = with python3.pkgs; [
setuptools
setuptools-changelog-shortener
];
buildInputs = [ glibcLocales ];
dependencies = with python3.pkgs; [
build
check-manifest
devpi-common
iniconfig
pkginfo
pluggy
platformdirs
];
nativeCheckInputs =
[
devpi-server
git
]
++ (with python3.pkgs; [
mercurial
mock
pypitoken
pytestCheckHook
sphinx
virtualenv
webtest
wheel
]);
preCheck = ''
export HOME=$(mktemp -d);
'';
pytestFlagsArray = [
# --fast skips tests which try to start a devpi-server improperly
"--fast"
];
LC_ALL = "en_US.UTF-8";
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "devpi" ];
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Client for devpi, a pypi index server and packaging meta tool";
homepage = "http://doc.devpi.net";
changelog = "https://github.com/devpi/devpi/blob/client-${version}/client/CHANGELOG";
license = licenses.mit;
maintainers = with maintainers; [
lewo
makefu
];
mainProgram = "devpi";
};
}