nixpkgs/pkgs/development/python-modules/devpi-common/default.nix
2017-12-05 13:31:55 +01:00

27 lines
625 B
Nix

{ stdenv, pythonPackages }:
with pythonPackages;buildPythonPackage rec {
pname = "devpi-common";
version = "3.2.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0rh119iw5hk41gsvbjr0wixvl1i4f0b1vcnw9ym35rmcp517z0wb";
};
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 ];
};
}