about summary refs log tree commit diff
path: root/pkgs/tools/misc/wlc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/wlc/default.nix')
-rw-r--r--pkgs/tools/misc/wlc/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/tools/misc/wlc/default.nix b/pkgs/tools/misc/wlc/default.nix
deleted file mode 100644
index 29eda8696d12..000000000000
--- a/pkgs/tools/misc/wlc/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib
-, python3
-, fetchPypi
-}:
-
-with python3.pkgs;
-
-buildPythonPackage rec {
-  pname = "wlc";
-  version = "1.15";
-
-  src = fetchPypi {
-    inherit pname version;
-    hash = "sha256-0T8cMq5Mrv/Ygo6BfYho3sjFuu8dYZyUMtJc5gabuG4=";
-  };
-
-  propagatedBuildInputs = [
-    argcomplete
-    python-dateutil
-    requests
-    pyxdg
-    responses
-    twine
-  ];
-
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
-
-  meta = with lib; {
-    description = "Weblate commandline client using Weblate's REST API";
-    homepage = "https://github.com/WeblateOrg/wlc";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ paperdigits ];
-    mainProgram = "wlc";
-  };
-}