about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pytest-dotenv/default.nix
blob: 9f045315f6d139d2d82b0385389e489c621ed0fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, buildPythonPackage, fetchPypi, pytest, python-dotenv }:

buildPythonPackage rec {
  pname = "pytest-dotenv";
  version = "0.5.2";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "LcbDrG2HZMccbSgE6QLQ/4EPoZaS6V/hOK78mxqnNzI=";
  };

  buildInputs = [ pytest ];
  propagatedBuildInputs = [ python-dotenv ];

  nativeCheckInputs = [ pytest ];

  meta = with lib; {
    description = "A pytest plugin that parses environment files before running tests";
    homepage = "https://github.com/quiqua/pytest-dotenv";
    license = licenses.mit;
    maintainers = with maintainers; [ cleeyv ];
  };
}