1{ lib, buildPythonPackage, fetchPypi, pytest }:
2
3buildPythonPackage rec {
4 pname = "pytest-warnings";
5 version = "0.3.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "18yxh153icmndaw8fkl1va0bk0mwzrbpaa6wxd29w3iwxym5zn2a";
10 };
11
12 propagatedBuildInputs = [ pytest ];
13
14 meta = {
15 description = "Plugin to list Python warnings in pytest report";
16 homepage = https://github.com/fschulze/pytest-warnings;
17 license = lib.licenses.mit;
18 };
19}