1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 21:17:46 +00:00
nixpkgs/pkgs/development/python-modules/pytest-metadata/default.nix

23 lines
601 B
Nix
Raw Normal View History

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