nixpkgs/pkgs/development/python-modules/pytest-env/default.nix
2024-10-13 11:09:08 +02:00

38 lines
709 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatch-vcs,
hatchling,
pytest,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pytest-env";
version = "1.1.5";
format = "pyproject";
src = fetchPypi {
pname = "pytest_env";
inherit version;
hash = "sha256-kSCYQKoOQzhQc6xGSlVK0pR8wv1mOp3r+I0DsB4Mwc8=";
};
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 ];
};
}