python3Packages.everett: init at 3.4.0
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
configobj,
|
||||
pytestCheckHook,
|
||||
pyyaml,
|
||||
setuptools,
|
||||
sphinx,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "everett";
|
||||
version = "3.4.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "willkg";
|
||||
repo = "everett";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-olYxUbsKaL7C5UTAPwW+EufjbWbbHZdZcQ/lfogNJrg=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
configobj
|
||||
pyyaml
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
sphinx
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "everett" ];
|
||||
|
||||
meta = {
|
||||
description = "Python configuration library for your app";
|
||||
homepage = "https://github.com/willkg/everett";
|
||||
changelog = "https://github.com/willkg/everett/releases/tag/${version}";
|
||||
license = lib.licenses.mpl20;
|
||||
maintainers = with lib.maintainers; [ jherland ];
|
||||
};
|
||||
}
|
||||
@@ -4851,6 +4851,8 @@ self: super: with self; {
|
||||
|
||||
events = callPackage ../development/python-modules/events { };
|
||||
|
||||
everett = callPackage ../development/python-modules/everett { };
|
||||
|
||||
evohome-async = callPackage ../development/python-modules/evohome-async { };
|
||||
|
||||
evolutionhttp = callPackage ../development/python-modules/evolutionhttp { };
|
||||
|
||||
Reference in New Issue
Block a user