Merge branch 'master' into staging
Evaluation was blocked on Hydra; this should fix it.
This commit is contained in:
26
pkgs/development/python-modules/devpi-common/default.nix
Normal file
26
pkgs/development/python-modules/devpi-common/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user