Merge pull request #144314 from cleeyv/pytest-dotenv

authored by

Sandro and committed by
GitHub
81462e47 ca6d7c54

+25
+23
pkgs/development/python-modules/pytest-dotenv/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, pytest, python-dotenv }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pytest-dotenv"; 5 + version = "0.5.2"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "LcbDrG2HZMccbSgE6QLQ/4EPoZaS6V/hOK78mxqnNzI="; 10 + }; 11 + 12 + buildInputs = [ pytest ]; 13 + propagatedBuildInputs = [ python-dotenv ]; 14 + 15 + checkInputs = [ pytest ]; 16 + 17 + meta = with lib; { 18 + description = "A pytest plugin that parses environment files before running tests"; 19 + homepage = "https://github.com/quiqua/pytest-dotenv"; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [ cleeyv ]; 22 + }; 23 + }
+2
pkgs/top-level/python-packages.nix
··· 7262 7262 7263 7263 pytest-doctestplus = callPackage ../development/python-modules/pytest-doctestplus { }; 7264 7264 7265 + pytest-dotenv = callPackage ../development/python-modules/pytest-dotenv { }; 7266 + 7265 7267 pytest-env = callPackage ../development/python-modules/pytest-env { }; 7266 7268 7267 7269 pytest-error-for-skips = callPackage ../development/python-modules/pytest-error-for-skips { };