about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pytest-metadata/default.nix
blob: 9f04cbe407d3b356dc8d9830757aff13fad7d0ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchPypi
, pytest, setuptools-scm }:

buildPythonPackage rec {
  pname = "pytest-metadata";
  version = "1.11.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "71b506d49d34e539cc3cfdb7ce2c5f072bea5c953320002c95968e0238f8ecf1";
  };

  nativeBuildInputs = [ setuptools-scm ];
  buildInputs = [ 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 ];
  };
}