python3Packages.pytest-env: 0.6.2 -> 0.8.1

This commit is contained in:
Martin Weinelt 2022-12-30 20:13:39 +01:00
parent d38e9e7f7c
commit 837057ad44

View File

@ -1,15 +1,35 @@
{ lib, buildPythonPackage, fetchPypi, pytest }:
{ lib
, buildPythonPackage
, fetchPypi
, hatch-vcs
, hatchling
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-env";
version = "0.6.2";
version = "0.8.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "1hl0ln0cicdid4qjk7mv90lw9xkb0v71dlj7q7rn89vzxxm9b53y";
pname = "pytest_env";
inherit version;
hash = "sha256-17L1Jz7G0eIhdXmYvC9Q0kdO19C5MxuSVWAR+txOmr8=";
};
checkInputs = [ pytest ];
nativeBuildInputs = [
hatch-vcs
hatchling
];
buildInputs = [
pytest
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Pytest plugin used to set environment variables";