nixpkgs/pkgs/development/python-modules/pytest-localserver/default.nix
Matthias Beyer 3c83ce3014 pythonPackages.pytest-localserver: 0.3.5 -> 0.3.7 (#26238)
* pythonPackages.pytest-localserver: 0.3.5 -> 0.3.7

* pythonPackages.pytest-localserver: Change to use python packaging tools

* pythonPackages.pytest-localserver: Move to own file
2017-05-30 17:47:00 +02:00

34 lines
643 B
Nix

{ buildPythonPackage
, lib
, fetchPypi
, requests
, pytest
, six
, werkzeug
}:
buildPythonPackage rec {
pname = "pytest-localserver";
name = "${pname}-${version}";
version = "0.3.7";
src = fetchPypi {
inherit pname version;
sha256 = "1c11hn61n06ms0wmw6536vs5k4k9hlndxsb3p170nva56a9dfa6q";
};
propagatedBuildInputs = [ werkzeug ];
buildInputs = [ pytest six requests ];
checkPhase = ''
py.test
'';
meta = {
description = "Plugin for the pytest testing framework to test server connections locally";
homepage = https://pypi.python.org/pypi/pytest-localserver;
license = lib.licenses.mit;
};
}