Merge pull request #11753 from nlewo/master

Add devpi-client and its dependencies
This commit is contained in:
Pascal Wittmann
2015-12-17 16:21:46 +01:00
4 changed files with 61 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];
};
}