nixpkgs/pkgs/development/tools/devpi-client/default.nix

33 lines
861 B
Nix
Raw Normal View History

{ stdenv
, pythonPackages
, glibcLocales
, devpi-server
} :
2015-12-15 20:46:01 +00:00
pythonPackages.buildPythonApplication rec {
2017-10-04 12:40:20 +00:00
name = "${pname}-${version}";
pname = "devpi-client";
version = "3.1.0";
2015-12-15 20:46:01 +00:00
2017-10-04 12:40:20 +00:00
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "0w47x3lkafcg9ijlaxllmq4886nsc91w49ck1cd7vn2gafkwjkgr";
2015-12-15 20:46:01 +00:00
};
2017-10-04 12:40:20 +00:00
doCheck = true;
checkInputs = with pythonPackages; [ pytest webtest mock devpi-server ];
2017-10-04 12:40:20 +00:00
checkPhase = "py.test";
2016-10-17 14:24:15 +00:00
LC_ALL = "en_US.UTF-8";
2017-10-04 12:40:20 +00:00
buildInputs = with pythonPackages; [ glibcLocales pkginfo tox check-manifest ];
propagatedBuildInputs = with pythonPackages; [ py devpi-common pluggy ];
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;
maintainers = with stdenv.lib.maintainers; [ lewo makefu ];
2015-12-15 20:46:01 +00:00
};
}