My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pytest-metadata/default.nix

29 lines
619 B

{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pythonOlder
, setuptools-scm
}:
buildPythonPackage rec {
pname = "pytest-metadata";
version = "2.0.1";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-XNtq7qi6kQkYHPnxScijrhQw/35EUGqPhmr4qYykYwE=";
};
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 ];
};
}