From 8312406411b0b988c5eb78407aa23be376f6de15 Mon Sep 17 00:00:00 2001 From: "Wu, Zhenyu" Date: Mon, 10 Jun 2024 14:55:51 +0800 Subject: [PATCH] :fire: Remove repl-python-wakatime --- _sources/generated.nix | 8 ------ default.nix | 2 -- nvfetcher.toml | 4 --- .../repl-python-wakatime/default.nix | 26 ------------------- .../translate-shell/default.nix | 1 - 5 files changed, 41 deletions(-) delete mode 100644 pkgs/development/python-modules/repl-python-wakatime/default.nix diff --git a/_sources/generated.nix b/_sources/generated.nix index 928523c..2ef7d0f 100644 --- a/_sources/generated.nix +++ b/_sources/generated.nix @@ -52,14 +52,6 @@ sha256 = "sha256-zuJBKcee/MdFvYECIIlxWL6FXDxa33VQtWEJXkfFRxM="; }; }; - repl-python-wakatime = { - pname = "repl-python-wakatime"; - version = "0.0.11"; - src = fetchurl { - url = "https://pypi.org/packages/source/r/repl-python-wakatime/repl-python-wakatime-0.0.11.tar.gz"; - sha256 = "sha256-HoCdeo03Lf3g5Xg0GgAyWOu2PtGqy33vg5bQrfkEPkE="; - }; - }; requirements-language-server = { pname = "requirements-language-server"; version = "0.0.20"; diff --git a/default.nix b/default.nix index 85cd9d3..74c8ec3 100644 --- a/default.nix +++ b/default.nix @@ -31,8 +31,6 @@ let undollar = callPackage ./pkgs/tools/misc/undollar { }; manpager = callPackage ./pkgs/tools/misc/manpager { }; - # https://github.com/NixOS/nixpkgs/issues/261342 - repl-python-wakatime = callPackage ./pkgs/development/python-modules/repl-python-wakatime { }; translate-shell = callPackage ./pkgs/development/python-modules/translate-shell { }; mulimgviewer = callPackage ./pkgs/development/python-modules/mulimgviewer { }; stardict-ecdict = callPackage ./pkgs/data/misc/stardict-ecdict { }; diff --git a/nvfetcher.toml b/nvfetcher.toml index 2b0bd5d..5cdeab2 100644 --- a/nvfetcher.toml +++ b/nvfetcher.toml @@ -14,10 +14,6 @@ fetch.github = "Freed-Wu/undollar" src.github = "Freed-Wu/manpager" fetch.github = "Freed-Wu/manpager" -[repl-python-wakatime] -src.pypi = "repl-python-wakatime" -fetch.pypi = "repl-python-wakatime" - [translate-shell] src.pypi = "translate-shell" fetch.pypi = "translate-shell" diff --git a/pkgs/development/python-modules/repl-python-wakatime/default.nix b/pkgs/development/python-modules/repl-python-wakatime/default.nix deleted file mode 100644 index 05f673c..0000000 --- a/pkgs/development/python-modules/repl-python-wakatime/default.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ mySources -, python3 -}: - -with python3.pkgs; - -buildPythonPackage rec { - inherit (mySources.repl-python-wakatime) pname version src; - format = "pyproject"; - disabled = pythonOlder "3.6"; - nativeBuildInputs = [ - setuptools-generate - setuptools-scm - ]; - pythonImportsCheck = [ - "repl_python_wakatime" - ]; - - meta = with lib; { - homepage = "https://repl-python-wakatime.readthedocs.io"; - description = "Python REPL plugin for automatic time tracking and metrics generated from your programming activity"; - license = licenses.gpl3; - maintainers = with maintainers; [ Freed-Wu ]; - platforms = platforms.unix; - }; -} diff --git a/pkgs/development/python-modules/translate-shell/default.nix b/pkgs/development/python-modules/translate-shell/default.nix index a308137..e99bf40 100644 --- a/pkgs/development/python-modules/translate-shell/default.nix +++ b/pkgs/development/python-modules/translate-shell/default.nix @@ -1,7 +1,6 @@ { mySources , python3 , lib -, repl-python-wakatime }: with python3.pkgs;