summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-warnings/default.nix
blob: d088bde8b0c9dd84789a51b7a1474053f5de1699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildPythonPackage, fetchPypi, pytest }:

buildPythonPackage rec {
  pname = "pytest-warnings";
  version = "0.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5939f76fe04ad18297e53af0c9fb38aca1ec74db807bd40ad72733603adbbc7d";
  };

  buildInputs = [ pytest ];

  meta = {
    description = "Plugin to list Python warnings in pytest report";
    homepage = "https://github.com/fschulze/pytest-warnings";
    license = lib.licenses.mit;
  };
}