python3Packages.keke: init at 0.1.4

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
matthewcroughan 2024-09-13 17:26:37 +01:00 committed by Sefa Eyeoglu
parent 345c263f2f
commit 02652438fc
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "keke";
version = "0.1.4";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-qGU7fZk23a4I0eosKY5eNqUOs3lwXj90qwix9q44MaA=";
};
installCheckPhase = ''
python -m keke.tests
'';
nativeBuildInputs = [ setuptools-scm ];
build-system = [
setuptools
wheel
];
pythonImportsCheck = [
"keke"
];
meta = {
description = "Easy profiling in chrome trace format";
homepage = "https://pypi.org/project/keke/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ matthewcroughan ];
};
}

View File

@ -6674,6 +6674,8 @@ self: super: with self; {
kegtron-ble = callPackage ../development/python-modules/kegtron-ble { };
keke = callPackage ../development/python-modules/keke { };
keras-applications = callPackage ../development/python-modules/keras-applications { };
keras = callPackage ../development/python-modules/keras { };