Unverified Commit 30997d95 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

treewide: remove superfluous pythonOlder "3.8" (#481065)

parents d113fbbe 0a28c33c
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -11,8 +11,6 @@ python3.pkgs.buildPythonApplication rec {
  version = "1.5.0";
  pyproject = true;

  disabled = python3.pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "ORB-HD";
    repo = "deface";
+4 −17
Original line number Diff line number Diff line
{
  lib,
  python3,
}:

@@ -16,22 +15,10 @@ let
          hash = "sha256-D4ZEN6uLYHa6ZwdFPvj5imoNUSqA6T+KvbZ29zfstg0=";
        };

        propagatedBuildInputs =
          with self;
          (
            [
        propagatedBuildInputs = with self; [
          attrs
          pyrsistent
            ]
            ++ lib.optionals (pythonOlder "3.8") [
              importlib-metadata
              typing-extensions
            ]
            ++ lib.optionals (pythonOlder "3.9") [
              importlib-resources
              pkgutil-resolve-name
            ]
          );
        ];
      });
    };
  };
+0 −2
Original line number Diff line number Diff line
@@ -18,8 +18,6 @@ python3Packages.buildPythonApplication rec {
    hash = "sha256-pK6JeTJeBq9qVfflNSYs3s4HuD0Kz6k9DDUVHL81FV0=";
  };

  disabled = python3Packages.pythonOlder "3.8";

  propagatedBuildInputs = with python3Packages; [
    setuptools
    requests
+0 −1
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@ python3Packages.buildPythonApplication rec {
  pname = "imgp";
  version = "2.9";
  pyproject = true;
  disabled = python3Packages.pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "jarun";
+0 −2
Original line number Diff line number Diff line
@@ -26,8 +26,6 @@ python3Packages.buildPythonApplication {
    filelock
  ];

  disabled = python3Packages.pythonOlder "3.8";

  # no tests
  doCheck = false;

Loading