Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pytest-env / default.nix
blobc5589f1cccd4b4be3f104e224839f2812ac5481f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , hatch-vcs
5 , hatchling
6 , pytest
7 , pytestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "pytest-env";
12   version = "1.1.3";
13   format = "pyproject";
15   src = fetchPypi {
16     pname = "pytest_env";
17     inherit version;
18     hash = "sha256-/NfcI7tx79PTVjK94bvl7oyNxEidZhf7AQZ0iA2WIWs=";
19   };
21   nativeBuildInputs = [
22     hatch-vcs
23     hatchling
24   ];
26   buildInputs = [
27     pytest
28   ];
30   nativeCheckInputs = [
31     pytestCheckHook
32   ];
34   meta = with lib; {
35     description = "Pytest plugin used to set environment variables";
36     homepage = "https://github.com/MobileDynasty/pytest-env";
37     license = licenses.mit;
38     maintainers = with maintainers; [ erikarvstedt ];
39   };