python3Packages.keke: init at 0.1.4 (#341621)

This commit is contained in:
Sefa Eyeoglu 2024-11-22 00:38:53 +01:00 committed by GitHub
commit 2adc5090b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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

@ -6866,6 +6866,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 { };