depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-warnings/default.nix
Default email bba55970ba Project import generated by Copybara.
GitOrigin-RevId: 3d1a7716d7f1fccbd7d30ab3b2ed3db831f43bde
2021-04-05 17:23:46 +02:00

19 lines
469 B
Nix

{ 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;
};
}