Merge branch 'master' into staging

Evaluation was blocked on Hydra; this should fix it.
This commit is contained in:
Vladimír Čunát
2017-10-05 12:34:05 +02:00
26 changed files with 637 additions and 483 deletions

View File

@@ -0,0 +1,26 @@
{ stdenv, pythonPackages }:
with pythonPackages;buildPythonPackage rec {
pname = "devpi-common";
version = "3.2.0rc1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1ws35g1r0j2xccsna4r6fc9a08przfi28kf9hciq3rmd6ndbr9c9";
};
propagatedBuildInputs = [ requests py ];
checkInputs = [ pytest ];
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
homepage = https://github.com/devpi/devpi;
description = "Utilities jointly used by devpi-server and devpi-client";
license = licenses.mit;
maintainers = with maintainers; [ lewo makefu ];
};
}