mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
23 lines
591 B
Nix
23 lines
591 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, pytest, setuptools_scm }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-metadata";
|
|
version = "1.10.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0593jf8l30ayrqr9gkmwfbhz9h8cyqp7mgwp7ah1gjysbajf1rmp";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|