mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
devpi-client: 2.7.0 -> 3.1.0rc1
This commit is contained in:
parent
585a617119
commit
396836356f
@ -1,20 +1,22 @@
|
|||||||
{ stdenv, fetchurl, pythonPackages, glibcLocales} :
|
{ stdenv, pythonPackages, glibcLocales} :
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
name = "devpi-client-${version}";
|
name = "${pname}-${version}";
|
||||||
version = "2.7.0";
|
pname = "devpi-client";
|
||||||
|
version = "3.1.0rc1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = pythonPackages.fetchPypi {
|
||||||
url = "mirror://pypi/d/devpi-client/${name}.tar.gz";
|
inherit pname version;
|
||||||
sha256 = "0z7vaf0a66n82mz0vx122pbynjvkhp2mjf9lskgyv09y3bxzzpj3";
|
sha256 = "0kfyva886k9zxmilqb2yviwqzyvs3n36if3s56y4clbvw9hr2lc3";
|
||||||
};
|
};
|
||||||
|
# requires devpi-server which is currently not packaged
|
||||||
doCheck = false;
|
doCheck = true;
|
||||||
|
checkInputs = with pythonPackages; [ pytest webtest mock ];
|
||||||
|
checkPhase = "py.test";
|
||||||
|
|
||||||
LC_ALL = "en_US.UTF-8";
|
LC_ALL = "en_US.UTF-8";
|
||||||
buildInputs = with pythonPackages; [ glibcLocales tox check-manifest pkginfo ];
|
buildInputs = with pythonPackages; [ glibcLocales pkginfo tox check-manifest ];
|
||||||
|
propagatedBuildInputs = with pythonPackages; [ py devpi-common pluggy ];
|
||||||
propagatedBuildInputs = with pythonPackages; [ py devpi-common ];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://doc.devpi.net;
|
homepage = http://doc.devpi.net;
|
||||||
|
Loading…
Reference in New Issue
Block a user