Unverified Commit 0e057023 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

treewide: remove superfluous pythonOlder "3.7" (#479981)

parents 13868c07 84a97942
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -14,8 +14,6 @@ python3.pkgs.buildPythonApplication rec {
  version = "1.9.5";
  pyproject = true;

  disabled = python3.pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "SamSchott";
    repo = "maestral-qt";
+0 −1
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@ python312Packages.buildPythonApplication rec {
  pname = "brutalmaze";
  version = "1.1.1";
  pyproject = true;
  disabled = python312Packages.pythonOlder "3.7";

  src = fetchFromSourcehut {
    owner = "~cnx";
+0 −1
Original line number Diff line number Diff line
@@ -10,7 +10,6 @@ let
      # see https://github.com/devicetree-org/dt-schema/issues/108
      jsonschema = super.jsonschema.overridePythonAttrs (old: rec {
        version = "4.17.3";
        disabled = self.pythonOlder "3.7";

        src = old.src.override {
          inherit version;
+0 −2
Original line number Diff line number Diff line
@@ -37,8 +37,6 @@ python.pkgs.buildPythonApplication rec {
    hash = "sha256-Jam7Txm+Fq5zEkJZMmbWW5Ok4ThsPyi6NIeawQot0RE=";
  };

  disabled = python.pythonOlder "3.7";

  propagatedBuildInputs = with python.pkgs; [
    docopt
    lark
+0 −2
Original line number Diff line number Diff line
@@ -20,8 +20,6 @@ python3Packages.buildPythonApplication rec {
    substituteInPlace requirements.txt --replace-fail 'junit-xml==1.8' 'junit-xml==1.9'
  '';

  disabled = python3Packages.pythonOlder "3.7";

  doCheck = false;

  build-system = with python3Packages; [ setuptools ];
Loading