about summary refs log tree commit diff
path: root/pkgs/development/python-modules/scooby
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/scooby')
-rw-r--r--pkgs/development/python-modules/scooby/default.nix64
1 files changed, 0 insertions, 64 deletions
diff --git a/pkgs/development/python-modules/scooby/default.nix b/pkgs/development/python-modules/scooby/default.nix
deleted file mode 100644
index 90be3a653872..000000000000
--- a/pkgs/development/python-modules/scooby/default.nix
+++ /dev/null
@@ -1,64 +0,0 @@
-{
-  lib,
-  beautifulsoup4,
-  buildPythonPackage,
-  fetchFromGitHub,
-  numpy,
-  pytest-console-scripts,
-  pytestCheckHook,
-  pythonOlder,
-  pyvips,
-  scipy,
-  setuptools-scm,
-}:
-
-buildPythonPackage rec {
-  pname = "scooby";
-  version = "0.10.0";
-  format = "setuptools";
-
-  disabled = pythonOlder "3.7";
-
-  src = fetchFromGitHub {
-    owner = "banesullivan";
-    repo = "scooby";
-    rev = "refs/tags/v${version}";
-    hash = "sha256-KXhLN8KPz61l+4v88+kVSvodT6OXDJ3Pw9A9aFWSqYE=";
-  };
-
-  nativeBuildInputs = [ setuptools-scm ];
-
-  nativeCheckInputs = [
-    beautifulsoup4
-    numpy
-    pytest-console-scripts
-    pytestCheckHook
-    pyvips
-    scipy
-  ];
-
-  preCheck = ''
-    export PATH="$PATH:$out/bin";
-  '';
-
-  pythonImportsCheck = [ "scooby" ];
-
-  disabledTests = [
-    # Tests have additions requirements (e.g., time and module)
-    "test_get_version"
-    "test_tracking"
-    "test_import_os_error"
-    "test_import_time"
-    # TypeError: expected str, bytes or os.PathLike object, not list
-    "test_cli"
-  ];
-
-  meta = with lib; {
-    changelog = "https://github.com/banesullivan/scooby/releases/tag/v${version}";
-    description = "Lightweight tool for reporting Python package versions and hardware resources";
-    mainProgram = "scooby";
-    homepage = "https://github.com/banesullivan/scooby";
-    license = licenses.mit;
-    maintainers = with maintainers; [ wegank ];
-  };
-}