mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
83 lines
1.4 KiB
Nix
83 lines
1.4 KiB
Nix
{ lib
|
|
, devpi-server
|
|
, git
|
|
, glibcLocales
|
|
, python3
|
|
, fetchPypi
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "devpi-client";
|
|
version = "7.0.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-AI/GNubb7+nwz/vM6v/JoUtWup6rBJieKXtFQzrdPkE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace tox.ini \
|
|
--replace "--flake8" ""
|
|
'';
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
setuptools
|
|
setuptools-changelog-shortener
|
|
wheel
|
|
];
|
|
|
|
buildInputs = [
|
|
glibcLocales
|
|
];
|
|
|
|
propagatedBuildInputs = 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"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|