python3Packages.everett: init at 3.4.0

This commit is contained in:
Johan Herland
2025-09-17 11:18:59 +04:00
committed by Alexander Bantyev
parent 9e5afcd5d2
commit b20f397ed0
2 changed files with 47 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -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 { };