nixpkgs/pkgs/development/python-modules/pytest-metadata/default.nix
2020-03-24 12:24:49 -07:00

23 lines
590 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, pytest, setuptools_scm }:
buildPythonPackage rec {
pname = "pytest-metadata";
version = "1.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "1fk6icip2x1nh4kzhbc8cnqrs77avpqvj7ny3xadfh6yhn9aaw90";
};
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 ];
};
}