about summary refs log tree commit diff
path: root/pkgs/development/python-modules/twill/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/twill/default.nix')
-rw-r--r--pkgs/development/python-modules/twill/default.nix58
1 files changed, 0 insertions, 58 deletions
diff --git a/pkgs/development/python-modules/twill/default.nix b/pkgs/development/python-modules/twill/default.nix
deleted file mode 100644
index 3077cee0c6d1..000000000000
--- a/pkgs/development/python-modules/twill/default.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{
-  lib,
-  buildPythonPackage,
-  fetchPypi,
-  httpx,
-  lxml,
-  pyparsing,
-  pytestCheckHook,
-  pythonOlder,
-  pythonRelaxDepsHook,
-  quixote,
-  setuptools,
-}:
-
-buildPythonPackage rec {
-  pname = "twill";
-  version = "3.2.4";
-  pyproject = true;
-
-  disabled = pythonOlder "3.8";
-
-  src = fetchPypi {
-    inherit pname version;
-    hash = "sha256-YlZKvOGxLWwGh+MqCXf8tfruxLK60H73k1VQhGOSTc8=";
-  };
-
-  pythonRelaxDeps = [ "lxml" ];
-
-  build-system = [ setuptools ];
-
-  nativeBuildInputs = [ pythonRelaxDepsHook ];
-
-  dependencies = [
-    httpx
-    lxml
-    pyparsing
-  ];
-
-  nativeCheckInputs = [
-    pytestCheckHook
-    quixote
-  ];
-
-  disabledTestPaths = [
-    # pytidylib is abandoned
-    "tests/test_tidy.py"
-  ];
-
-  pythonImportsCheck = [ "twill" ];
-
-  meta = with lib; {
-    description = "Simple scripting language for Web browsing";
-    homepage = "https://twill-tools.github.io/twill/";
-    changelog = "https://github.com/twill-tools/twill/releases/tag/v${version}";
-    license = licenses.mit;
-    maintainers = with maintainers; [ mic92 ];
-  };
-}