depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-warnings/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

25 lines
503 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytest,
}:
buildPythonPackage rec {
pname = "pytest-warnings";
version = "0.3.1";
format = "setuptools";
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;
};
}