mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-09 19:56:58 +01:00
https://github.com/wakatime/repl-python-wakatime/releases/tag/0.1.6 This commit was automatically generated using update-python-libraries.
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
ipython,
|
|
keyring,
|
|
ptpython,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
setuptools-generate,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "repl-python-wakatime";
|
|
version = "0.1.6";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wakatime";
|
|
repo = "repl-python-wakatime";
|
|
tag = version;
|
|
hash = "sha256-U7p0TnGtjxssYAMk6QteeU1Vdq7mrjdDZvwYhyNOIoY=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
setuptools-generate
|
|
];
|
|
|
|
dependencies = [
|
|
ptpython
|
|
ipython
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
keyring
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "repl_python_wakatime" ];
|
|
|
|
meta = {
|
|
description = "Python REPL plugin for automatic time tracking and metrics generated from your programming activity";
|
|
homepage = "https://github.com/wakatime/repl-python-wakatime";
|
|
changelog = "https://github.com/wakatime/repl-python-wakatime/releases/tag/${src.tag}";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ jfvillablanca ];
|
|
};
|
|
}
|