1 { lib, buildPythonPackage, fetchPypi
2 , pytest, setuptools_scm }:
4 buildPythonPackage rec {
5 pname = "pytest-metadata";
10 sha256 = "71b506d49d34e539cc3cfdb7ce2c5f072bea5c953320002c95968e0238f8ecf1";
13 nativeBuildInputs = [ setuptools_scm ];
14 buildInputs = [ pytest ];
17 description = "Plugin for accessing test session metadata";
18 homepage = "https://github.com/pytest-dev/pytest-metadata";
19 license = licenses.mpl20;
20 maintainers = with maintainers; [ mpoquet ];