ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pytest-warnings / default.nix
blobd088bde8b0c9dd84789a51b7a1474053f5de1699
1 { lib, buildPythonPackage, fetchPypi, pytest }:
3 buildPythonPackage rec {
4   pname = "pytest-warnings";
5   version = "0.3.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "5939f76fe04ad18297e53af0c9fb38aca1ec74db807bd40ad72733603adbbc7d";
10   };
12   buildInputs = [ pytest ];
14   meta = {
15     description = "Plugin to list Python warnings in pytest report";
16     homepage = "https://github.com/fschulze/pytest-warnings";
17     license = lib.licenses.mit;
18   };