summary refs log tree commit diff
path: root/pkgs/development/python-modules/environmental-override/default.nix
blob: 235401153136a85cd07f32becfe45669511ca947 (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
25
26
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "environmental-override";
  version = "0.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1vhd37i6f8xh6kd61yxc2ynzgcln7v2p7fyzjmhbkdnws6gwfs6s";
  };

  # No tests have been written for this library.
  doCheck = false;

  pythonImportsCheck = [ "environmental_override" ];

  meta = {
    description = "Easily configure apps using simple environmental overrides";
    homepage = "https://github.com/coddingtonbear/environmental-override";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ nathanruiz ];
  };
}