Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 22 lines 591 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, pytest, setuptools_scm }: 3 4buildPythonPackage rec { 5 pname = "pytest-metadata"; 6 version = "1.10.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0593jf8l30ayrqr9gkmwfbhz9h8cyqp7mgwp7ah1gjysbajf1rmp"; 11 }; 12 13 nativeBuildInputs = [ setuptools_scm ]; 14 propagatedBuildInputs = [ pytest ]; 15 16 meta = with stdenv.lib; { 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 ]; 21 }; 22}