linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pytest-flask / default.nix
blobe55d98ce46beebde74c882a208508a8e598bf599
1 { lib, buildPythonPackage, fetchPypi, pytest, flask, werkzeug, setuptools_scm, isPy27 }:
3 buildPythonPackage rec {
4   pname = "pytest-flask";
5   version = "1.1.0";
6   disabled = isPy27;
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "9c136afd6d0fb045b0b8fd2363421b6670bfebd21d9141f79669d9051c9d2d05";
11   };
13   doCheck = false;
15   buildInputs = [ pytest ];
17   propagatedBuildInputs = [
18     flask
19     werkzeug
20   ];
22   nativeBuildInputs = [ setuptools_scm ];
24   meta = with lib; {
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 ];
29   };