My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/environmental-override/default.nix

26 lines
632 B

{ 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 ];
};
}