depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-env/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

40 lines
712 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, hatch-vcs
, hatchling
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-env";
version = "1.1.3";
format = "pyproject";
src = fetchPypi {
pname = "pytest_env";
inherit version;
hash = "sha256-/NfcI7tx79PTVjK94bvl7oyNxEidZhf7AQZ0iA2WIWs=";
};
nativeBuildInputs = [
hatch-vcs
hatchling
];
buildInputs = [
pytest
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Pytest plugin used to set environment variables";
homepage = "https://github.com/MobileDynasty/pytest-env";
license = licenses.mit;
maintainers = with maintainers; [ erikarvstedt ];
};
}