1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pytest,
6}:
7
8buildPythonPackage rec {
9 pname = "pytest-warnings";
10 version = "0.3.1";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "5939f76fe04ad18297e53af0c9fb38aca1ec74db807bd40ad72733603adbbc7d";
16 };
17
18 buildInputs = [ pytest ];
19
20 meta = {
21 description = "Plugin to list Python warnings in pytest report";
22 homepage = "https://github.com/fschulze/pytest-warnings";
23 license = lib.licenses.mit;
24 };
25}