2017-09-05 11:16:41 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pytest }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytest-warnings";
|
2020-10-15 14:22:58 +02:00
|
|
|
version = "0.3.1";
|
2017-09-05 11:16:41 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-15 14:22:58 +02:00
|
|
|
sha256 = "5939f76fe04ad18297e53af0c9fb38aca1ec74db807bd40ad72733603adbbc7d";
|
2017-09-05 11:16:41 +02:00
|
|
|
};
|
|
|
|
|
2021-03-12 23:20:19 +01:00
|
|
|
buildInputs = [ pytest ];
|
2017-09-05 11:16:41 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Plugin to list Python warnings in pytest report";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/fschulze/pytest-warnings";
|
2017-09-05 11:16:41 +02:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|