2016-10-17 14:24:15 +00:00
|
|
|
{ stdenv, fetchurl, pythonPackages, glibcLocales} :
|
2015-12-15 20:46:01 +00:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2015-12-15 20:46:01 +00:00
|
|
|
name = "devpi-client-${version}";
|
|
|
|
version = "2.3.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-10-17 14:24:15 +00:00
|
|
|
url = "mirror://pypi/d/devpi-client/${name}.tar.gz";
|
|
|
|
sha256 = "22484d6a1ccc957d3e4f857e428244fb27c042baedd3bf28fe7522cd89d8ff45";
|
2015-12-15 20:46:01 +00:00
|
|
|
};
|
|
|
|
|
2016-10-17 14:24:15 +00:00
|
|
|
doCheck = false;
|
2016-04-14 12:06:32 +00:00
|
|
|
|
2016-10-17 14:24:15 +00:00
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
buildInputs = with pythonPackages; [ glibcLocales tox check-manifest pkginfo ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ py devpi-common ];
|
2016-04-14 12:06:32 +00:00
|
|
|
|
2015-12-15 20:46:01 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://doc.devpi.net;
|
|
|
|
description = "Github-style pypi index server and packaging meta tool";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
2016-04-14 12:06:32 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ lewo makefu ];
|
2015-12-15 20:46:01 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
}
|