pythonPackages.pytest-metadata: init at 1.8.0
This commit is contained in:
parent
85b91c7bb6
commit
ebed789ad4
22
pkgs/development/python-modules/pytest-metadata/default.nix
Normal file
22
pkgs/development/python-modules/pytest-metadata/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user