nixpkgs/pkgs/development/python-modules/pytest-flask/default.nix

30 lines
704 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pytest, flask, werkzeug, setuptools_scm, isPy27 }:
buildPythonPackage rec {
pname = "pytest-flask";
2020-06-06 07:47:27 +01:00
version = "1.0.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:27 +01:00
sha256 = "4d5678a045c07317618d80223ea124e21e8acc89dae109542dd1fdf6783d96c2";
};
doCheck = false;
propagatedBuildInputs = [
pytest
flask
werkzeug
];
nativeBuildInputs = [ setuptools_scm ];
meta = with stdenv.lib; {
homepage = "https://github.com/pytest-dev/pytest-flask/";
license = licenses.mit;
description = "A set of py.test fixtures to test Flask applications";
maintainers = with maintainers; [ vanschelven ];
};
}