Commit d6334e81 authored by Sigmanificient's avatar Sigmanificient
Browse files

python3Packages.globre: remove

parent 20eff53a
Loading
Loading
Loading
Loading
+0 −29
Original line number Diff line number Diff line
{ lib
, pythonAtLeast
, buildPythonPackage
, fetchPypi
, nose
, coverage
}:

buildPythonPackage rec {
  pname = "globre";
  version = "0.1.5";
  format = "setuptools";
  # https://github.com/metagriffin/globre/issues/7
  disabled = pythonAtLeast "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1qhjpg0722871dm5m7mmldf6c7mx58fbdvk1ix5i3s9py82448gf";
  };

  nativeCheckInputs = [ nose coverage ];

  meta = with lib; {
    homepage = "https://github.com/metagriffin/globre";
    description = "A python glob-like regular expression generation library.";
    maintainers = with maintainers; [ glittershark ];
    license = licenses.gpl3;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -194,6 +194,7 @@ mapAliases ({
  GitPython = gitpython; # added 2022-10-28
  glances = throw "glances has moved to pkgs.glances"; # added 2020-20-28
  glasgow = throw "glasgow has been promoted to a top-level attribute name: `pkgs.glasgow`"; # added 2023-02-05
  globre = throw "globre was removed, because it was disabled on all python version since 3.7 and last updated in 2020."; # added 2024-05-13
  google_api_python_client = google-api-python-client; # added 2021-03-19
  googleapis_common_protos = googleapis-common-protos; # added 2021-03-19
  google-apitools = throw "google-apitools was removed because it is deprecated and unsupported by upstream"; # added 2023-02-25
+0 −2
Original line number Diff line number Diff line
@@ -4836,8 +4836,6 @@ self: super: with self; {
  glob2 = callPackage ../development/python-modules/glob2 { };
  globre = callPackage ../development/python-modules/globre { };
  globus-sdk = callPackage ../development/python-modules/globus-sdk { };
  glom = callPackage ../development/python-modules/glom { };