9 python3.pkgs.buildPythonApplication rec {
10 pname = "devpi-client";
15 inherit pname version;
16 hash = "sha256-oOX5Z8WXgNJYsgXqHE2CsXdDnA3XmDF6axD1D318bPQ=";
20 substituteInPlace tox.ini \
21 --replace "--flake8" ""
24 nativeBuildInputs = with python3.pkgs; [
26 setuptools-changelog-shortener
34 propagatedBuildInputs = with python3.pkgs; [
47 ] ++ (with python3.pkgs; [
59 export HOME=$(mktemp -d);
63 # --fast skips tests which try to start a devpi-server improperly
67 LC_ALL = "en_US.UTF-8";
69 __darwinAllowLocalNetworking = true;
71 pythonImportsCheck = [
76 description = "Client for devpi, a pypi index server and packaging meta tool";
77 mainProgram = "devpi";
78 homepage = "http://doc.devpi.net";
79 changelog = "https://github.com/devpi/devpi/blob/client-${version}/client/CHANGELOG";
80 license = licenses.mit;
81 maintainers = with maintainers; [ lewo makefu ];