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

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "pytest-warnings";
  version = "0.3.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "18yxh153icmndaw8fkl1va0bk0mwzrbpaa6wxd29w3iwxym5zn2a";
  };

  propagatedBuildInputs = [ pytest ];

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