python3Packages.pytest-localserver: 0.5.0 -> 0.5.1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{ buildPythonPackage
|
||||
, lib
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, werkzeug
|
||||
}:
|
||||
@@ -7,23 +7,28 @@
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-localserver";
|
||||
version = "0.5.1";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "ef6f04193dc0f7e8df5b27b3a8834318fa12eaf025436d2a99afff1b73cde761";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ werkzeug ];
|
||||
propagatedBuildInputs = [
|
||||
werkzeug
|
||||
];
|
||||
|
||||
# all tests access network: does not work in sandbox
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "pytest_localserver" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pytest_localserver"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Plugin for the pytest testing framework to test server connections locally";
|
||||
homepage = "https://pypi.python.org/pypi/pytest-localserver";
|
||||
homepage = "https://github.com/pytest-dev/pytest-localserver";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ siriobalmelli ];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user