python.pkgs.pytest-warnings: init at 0.3.0

This commit is contained in:
Jörg Thalheim 2017-08-27 15:32:28 +01:00 committed by Frederik Rietdijk
parent ec33fe6181
commit 1089ccedb7
2 changed files with 22 additions and 0 deletions

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

View File

@ -4232,6 +4232,8 @@ in {
};
};
pytest-warnings = callPackage ../development/python-modules/pytest-warnings { };
pytestpep8 = buildPythonPackage rec {
name = "pytest-pep8";
src = pkgs.fetchurl {