python311Packages.essentials: init at 0.1.5

This commit is contained in:
zimbatm 2024-02-01 14:37:27 +01:00
parent 692356d156
commit 352a41f7ce
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
pythonImportsCheckHook,
lib,
}:
buildPythonPackage rec {
pname = "essentials";
version = "1.1.5";
pyproject = true;
src = fetchFromGitHub {
owner = "Neoteroi";
repo = "essentials";
rev = "v${version}";
hash = "sha256-WMHjBVkeSoQ4Naj1U7Bg9j2hcoErH1dx00BPKiom9T4=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"essentials"
];
meta = with lib; {
homepage = "https://github.com/Neoteroi/essentials";
description = "General purpose classes and functions";
changelog = "https://github.com/Neoteroi/essentials/releases/v${version}";
license = licenses.mit;
maintainers = with maintainers; [aldoborrero zimbatm];
};
}

View File

@ -3745,6 +3745,8 @@ self: super: with self; {
escapism = callPackage ../development/python-modules/escapism { };
essentials = callPackage ../development/python-modules/essentials { };
etcd = callPackage ../development/python-modules/etcd { };
etcd3 = callPackage ../development/python-modules/etcd3 {