1 { lib, buildPythonPackage, fetchPypi, pytest, flask, werkzeug, setuptools_scm, isPy27 }:
3 buildPythonPackage rec {
4 pname = "pytest-flask";
10 sha256 = "9c136afd6d0fb045b0b8fd2363421b6670bfebd21d9141f79669d9051c9d2d05";
15 buildInputs = [ pytest ];
17 propagatedBuildInputs = [
22 nativeBuildInputs = [ setuptools_scm ];
25 homepage = "https://github.com/pytest-dev/pytest-flask/";
26 license = licenses.mit;
27 description = "A set of py.test fixtures to test Flask applications";
28 maintainers = with maintainers; [ vanschelven ];