depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-warnings/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

20 lines
494 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;
};
}