fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
56 lines
924 B
Nix
56 lines
924 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
click,
|
|
fetchPypi,
|
|
jinja2,
|
|
mock,
|
|
pynose,
|
|
poetry-core,
|
|
pythonOlder,
|
|
terminaltables,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "envs";
|
|
version = "1.4";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-nYQ1xphdHN1oKZ4ExY4r24rmz2ayWWqAeeb5qT8qA5g=";
|
|
};
|
|
|
|
nativeBuildInputs = [ poetry-core ];
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
jinja2
|
|
terminaltables
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pynose
|
|
];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
nosetests --with-isolation
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [ "envs" ];
|
|
|
|
meta = with lib; {
|
|
description = "Easy access to environment variables from Python";
|
|
mainProgram = "envs";
|
|
homepage = "https://github.com/capless/envs";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
}
|