Merge pull request #261390 from jfvillablanca/repl-python-wakatime

pythonPackages.repl-python-wakatime: init at 0.0.6
This commit is contained in:
Peder Bergebakken Sundt
2024-06-08 03:30:42 +02:00
committed by GitHub
2 changed files with 50 additions and 0 deletions
@@ -0,0 +1,48 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, ptpython
, ipython
, setuptools
, setuptools-scm
, setuptools-generate
}:
let
pname = "repl-python-wakatime";
version = "0.0.6";
in
buildPythonPackage {
inherit pname version;
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-s2UelniMn4+wWILbVIIKidRCFaOvo/nNNofA7yf2+9c=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
setuptools-generate
];
propagatedBuildInputs = [
ptpython
ipython
];
pythonImportsCheck = [
"repl_python_wakatime"
];
meta = with lib; {
description = "Python REPL plugin for automatic time tracking and metrics generated from your programming activity";
homepage = "https://github.com/wakatime/repl-python-wakatime";
license = licenses.gpl3Only;
maintainers = with maintainers; [ jfvillablanca ];
};
}
+2
View File
@@ -13198,6 +13198,8 @@ self: super: with self; {
repeated-test = callPackage ../development/python-modules/repeated-test { };
repl-python-wakatime = callPackage ../development/python-modules/repl-python-wakatime { };
repocheck = callPackage ../development/python-modules/repocheck { };
reportengine = callPackage ../development/python-modules/reportengine { };