2015-12-15 20:46:01 +00:00
|
|
|
{ stdenv, fetchurl, pythonPackages, python} :
|
|
|
|
|
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 {
|
|
|
|
url = "https://pypi.python.org/packages/source/d/devpi-client/devpi-client-${version}.tar.gz";
|
|
|
|
md5= "bfc8cd768f983fd0585c347bca00c8bb";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pythonPackages.tox pythonPackages.check-manifest pythonPackages.devpi-common pythonPackages.pkginfo ];
|
|
|
|
meta = {
|
|
|
|
homepage = http://doc.devpi.net;
|
|
|
|
description = "Github-style pypi index server and packaging meta tool";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
maintainers = [stdenv.lib.maintainers.lewo];
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|