Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pytest-env / default.nix
blob3e2fb0a05dc7fcaac5f5373b71de90631323f342
1 { lib, buildPythonPackage, fetchPypi, pytest }:
3 buildPythonPackage rec {
4   pname = "pytest-env";
5   version = "0.6.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1hl0ln0cicdid4qjk7mv90lw9xkb0v71dlj7q7rn89vzxxm9b53y";
10   };
12   checkInputs = [ pytest ];
14   meta = with lib; {
15     description = "Pytest plugin used to set environment variables";
16     homepage = "https://github.com/MobileDynasty/pytest-env";
17     license = licenses.mit;
18     maintainers = with maintainers; [ earvstedt ];
19   };