nixpkgs/pkgs/development/tools/devpi-client/default.nix

48 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv
, pythonPackages
, glibcLocales
, devpi-server
2017-12-05 13:30:07 +03:00
, git
, mercurial
} :
2015-12-15 23:46:01 +03:00
pythonPackages.buildPythonApplication rec {
2017-10-04 15:40:20 +03:00
name = "${pname}-${version}";
pname = "devpi-client";
version = "4.1.0";
2015-12-15 23:46:01 +03:00
2017-10-04 15:40:20 +03:00
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "0f5jkvxx9fl8v5vwbwmplqhjsdfgiib7j3zvn0zxd8krvi2s38fq";
2015-12-15 23:46:01 +03:00
};
2017-12-05 13:30:07 +03:00
checkInputs = with pythonPackages; [
pytest pytest-flakes webtest mock
2017-12-05 13:30:07 +03:00
devpi-server tox
sphinx wheel git mercurial detox
setuptools
];
checkPhase = ''
export PATH=$PATH:$out/bin
export HOME=$TMPDIR # fix tests failing in sandbox due to "/homeless-shelter"
2017-12-05 13:30:07 +03:00
# setuptools do not get propagated into the tox call (cannot import setuptools)
rm testing/test_test.py
# test_pypi_index_attributes tries to connect to upstream pypi
py.test -k 'not test_pypi_index_attributes' testing
2017-12-05 13:30:07 +03:00
'';
2016-10-17 17:24:15 +03:00
LC_ALL = "en_US.UTF-8";
2017-12-05 13:30:07 +03:00
buildInputs = with pythonPackages; [ glibcLocales pkginfo check-manifest ];
propagatedBuildInputs = with pythonPackages; [ py devpi-common pluggy setuptools ];
2017-12-05 13:30:07 +03:00
meta = with stdenv.lib; {
2015-12-15 23:46:01 +03:00
homepage = http://doc.devpi.net;
2017-12-05 13:30:07 +03:00
description = "Client for devpi, a pypi index server and packaging meta tool";
license = licenses.mit;
maintainers = with maintainers; [ lewo makefu ];
2015-12-15 23:46:01 +03:00
};
2017-12-05 13:30:07 +03:00
2015-12-15 23:46:01 +03:00
}