Commit 5d5c4baa authored by Sigmanificient's avatar Sigmanificient
Browse files

treewide: drop python 3.3 checks

parent 9fb9a86f
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -19,8 +19,6 @@ python3Packages.buildPythonApplication rec {
    colorama imagesize lxml requests setuptools six
  ];

  disabled = python3Packages.pythonOlder "3.3";

  meta = {
    description = "A comic strip downloader and archiver";
    mainProgram = "dosage";
+0 −6
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi

, pythonOlder

, pytestCheckHook

, setuptools
}:

@@ -14,8 +10,6 @@ buildPythonPackage rec {
  version = "0.0.95";
  pyproject = true;

  disabled = pythonOlder "3.3";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-0gEPXqw99UTsSOwRYQLgaFkaNFsaWA8ylz24pQX8p0Q=";
+0 −2
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, pytestCheckHook
}:
@@ -9,7 +8,6 @@ buildPythonPackage rec {
  pname = "anyascii";
  version = "0.3.2";
  format = "setuptools";
  disabled = pythonOlder "3.3";

  src = fetchPypi {
    inherit pname version;
+0 −2
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytestCheckHook
}:

@@ -9,7 +8,6 @@ buildPythonPackage rec {
  pname = "dronecan";
  version = "1.0.26";
  format = "setuptools";
  disabled = pythonOlder "3.3";

  src = fetchPypi {
    inherit pname version;
+0 −2
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pythonAtLeast
, pytestCheckHook
}:

@@ -10,7 +9,6 @@ buildPythonPackage rec {
  pname = "dugong";
  version = "3.8.1";
  format = "setuptools";
  disabled = pythonOlder "3.3";

  src = fetchFromGitHub {
    owner = "python-dugong";
Loading