02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
21 lines
494 B
Nix
21 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;
|
|
};
|
|
}
|