pythonPackages.pytest-env: init at 0.6.2

This commit is contained in:
Erik Arvstedt 2019-01-27 15:26:26 +01:00
parent 5e3e440a60
commit 8646d2a2bb
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "pytest-env";
version = "0.6.2";
src = fetchPypi {
inherit pname version;
sha256 = "1hl0ln0cicdid4qjk7mv90lw9xkb0v71dlj7q7rn89vzxxm9b53y";
};
checkInputs = [ pytest ];
meta = with lib; {
description = "Pytest plugin used to set environment variables";
homepage = https://github.com/MobileDynasty/pytest-env;
license = licenses.mit;
maintainers = with maintainers; [ earvstedt ];
};
}

View File

@ -765,6 +765,8 @@ in {
pytest-click = callPackage ../development/python-modules/pytest-click { };
pytest-env = callPackage ../development/python-modules/pytest-env { };
pytest-mypy = callPackage ../development/python-modules/pytest-mypy { };
pytest-pylint = callPackage ../development/python-modules/pytest-pylint { };