1{ lib, buildPythonPackage, fetchPypi, pytest }:
2
3buildPythonPackage rec {
4 pname = "pytest-env";
5 version = "0.6.2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1hl0ln0cicdid4qjk7mv90lw9xkb0v71dlj7q7rn89vzxxm9b53y";
10 };
11
12 checkInputs = [ pytest ];
13
14 meta = with lib; {
15 description = "Pytest plugin used to set environment variables";
16 homepage = "https://github.com/MobileDynasty/pytest-env";
17 license = licenses.mit;
18 maintainers = with maintainers; [ erikarvstedt ];
19 };
20}