devpi-client: init at 2.3.2

This commit is contained in:
Antoine Eiche 2015-12-15 21:46:01 +01:00
parent e1ff5eb7da
commit f21a65f719
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, pythonPackages, python} :
pythonPackages.buildPythonPackage rec {
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];
};
}

View file

@ -3835,6 +3835,8 @@ let
cython = pythonPackages.cython;
cython3 = python3Packages.cython;
devpi-client = callPackage ../development/tools/devpi-client {};
ecl = callPackage ../development/compilers/ecl { };
eql = callPackage ../development/compilers/eql {};