python.pkgs.pytest-warnings: init at 0.3.0
This commit is contained in:
parent
ec33fe6181
commit
1089ccedb7
20
pkgs/development/python-modules/pytest-warnings/default.nix
Normal file
20
pkgs/development/python-modules/pytest-warnings/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "pytest-warnings";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "18yxh153icmndaw8fkl1va0bk0mwzrbpaa6wxd29w3iwxym5zn2a";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pytest ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Plugin to list Python warnings in pytest report";
|
||||
homepage = github.com/fschulze/pytest-warnings;
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
@ -4232,6 +4232,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
pytest-warnings = callPackage ../development/python-modules/pytest-warnings { };
|
||||
|
||||
pytestpep8 = buildPythonPackage rec {
|
||||
name = "pytest-pep8";
|
||||
src = pkgs.fetchurl {
|
||||
|
Loading…
Reference in New Issue
Block a user