pythonPackages.pytest-metadata: init at 1.8.0

This commit is contained in:
Millian Poquet 2020-03-12 11:25:31 +01:00 committed by Jon
parent 85b91c7bb6
commit ebed789ad4
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi
, pytest, setuptools_scm }:
buildPythonPackage rec {
pname = "pytest-metadata";
version = "1.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "1fk6icip2x1nh4kzhbc8cnqrs77avpqvj7ny3xadfh6yhn9aaw90";
};
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ pytest ];
meta = with stdenv.lib; {
description = "Plugin for accessing test session metadata";
homepage = "https://github.com/pytest-dev/pytest-metadata";
license = licenses.mpl20;
maintainers = with maintainers; [ mpoquet ];
};
}

View File

@ -2399,6 +2399,8 @@ in {
pytest-forked = callPackage ../development/python-modules/pytest-forked { };
pytest-metadata = callPackage ../development/python-modules/pytest-metadata { };
pytest-rerunfailures = callPackage ../development/python-modules/pytest-rerunfailures { };
pytest-relaxed = callPackage ../development/python-modules/pytest-relaxed { };