Merge pull request #14687 from makefu/devpi-client-fix
devpi-client: add missing python libraries
This commit is contained in:
commit
aedf601bba
|
@ -9,12 +9,15 @@ pythonPackages.buildPythonApplication rec {
|
||||||
md5= "bfc8cd768f983fd0585c347bca00c8bb";
|
md5= "bfc8cd768f983fd0585c347bca00c8bb";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pythonPackages.tox pythonPackages.check-manifest pythonPackages.devpi-common pythonPackages.pkginfo ];
|
buildInputs = [ pythonPackages.tox pythonPackages.check-manifest pythonPackages.pkginfo ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pythonPackages.py pythonPackages.devpi-common ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://doc.devpi.net;
|
homepage = http://doc.devpi.net;
|
||||||
description = "Github-style pypi index server and packaging meta tool";
|
description = "Github-style pypi index server and packaging meta tool";
|
||||||
license = stdenv.lib.licenses.mit;
|
license = stdenv.lib.licenses.mit;
|
||||||
maintainers = [stdenv.lib.maintainers.lewo];
|
maintainers = with stdenv.lib.maintainers; [ lewo makefu ];
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue