My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pytest-warnings/default.nix

19 lines
469 B

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