about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pytest-warnings/default.nix
blob: 78cd02897f9ae0a859d277722d933315cd700a4c (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.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;
  };
}