nixpkgs/pkgs/development/tools/devpi-client/default.nix
2023-05-25 15:52:27 +03:00

78 lines
1.4 KiB
Nix

{ lib
, devpi-server
, git
, glibcLocales
, python3
, fetchPypi
}:
python3.pkgs.buildPythonApplication rec {
pname = "devpi-client";
version = "6.0.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-csdQUxnopH+kYtoqdvyXKNW3fGkQNSREJYxjes9Dgi8=";
};
postPatch = ''
substituteInPlace tox.ini \
--replace "--flake8" ""
'';
buildInputs = [
glibcLocales
];
propagatedBuildInputs = with python3.pkgs; [
argon2-cffi-bindings
build
check-manifest
devpi-common
iniconfig
pep517
pkginfo
pluggy
platformdirs
py
setuptools
];
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;
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 ];
};
}