summary refs log tree commit diff
diff options
context:
space:
mode:
authornatsukium <tomoya.otabi@gmail.com>2023-07-03 17:48:19 +0900
committernatsukium <tomoya.otabi@gmail.com>2023-07-03 17:48:19 +0900
commitf53b5bd71f3e7f31eca09af8c510da7744b0f3a8 (patch)
tree027ee78829b46b033db7fb35dd9c09d434a59dd5
parent5e6e1ed6f69bf56734e9843353dceaeff976c025 (diff)
downloadnixpkgs-f53b5bd71f3e7f31eca09af8c510da7744b0f3a8.tar
nixpkgs-f53b5bd71f3e7f31eca09af8c510da7744b0f3a8.tar.gz
nixpkgs-f53b5bd71f3e7f31eca09af8c510da7744b0f3a8.tar.bz2
nixpkgs-f53b5bd71f3e7f31eca09af8c510da7744b0f3a8.tar.lz
nixpkgs-f53b5bd71f3e7f31eca09af8c510da7744b0f3a8.tar.xz
nixpkgs-f53b5bd71f3e7f31eca09af8c510da7744b0f3a8.tar.zst
nixpkgs-f53b5bd71f3e7f31eca09af8c510da7744b0f3a8.zip
python310Packages.python-pushover: remove
It is unmaintained and broken.
-rw-r--r--pkgs/development/python-modules/pushover/default.nix25
-rw-r--r--pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json3
-rw-r--r--pkgs/top-level/python-aliases.nix1
-rw-r--r--pkgs/top-level/python-packages.nix2
4 files changed, 1 insertions, 30 deletions
diff --git a/pkgs/development/python-modules/pushover/default.nix b/pkgs/development/python-modules/pushover/default.nix
deleted file mode 100644
index 0f8a5f2779c..00000000000
--- a/pkgs/development/python-modules/pushover/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, lib, buildPythonPackage, fetchPypi
-, requests }:
-
-buildPythonPackage rec {
-  pname = "python-pushover";
-  version = "0.4";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "dee1b1344fb8a5874365fc9f886d9cbc7775536629999be54dfa60177cf80810";
-  };
-
-  propagatedBuildInputs = [ requests ];
-
-  # tests require network
-  doCheck = false;
-
-  meta = with lib; {
-    broken = true; # Relies on 2to3 via setuptools
-    description = "Bindings and command line utility for the Pushover notification service";
-    homepage = "https://github.com/Thibauth/python-pushover";
-    license = licenses.gpl3;
-    maintainers = with maintainers; [ peterhoeg ];
-  };
-}
diff --git a/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json b/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json
index 3da1a791863..b212fffc1b1 100644
--- a/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json
+++ b/pkgs/development/tools/poetry2nix/poetry2nix/overrides/build-systems.json
@@ -14823,9 +14823,6 @@
   "python-ptrace": [
     "setuptools"
   ],
-  "python-pushover": [
-    "setuptools"
-  ],
   "python-rabbitair": [
     "setuptools"
   ],
diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix
index aaaa6b6e50c..9c3dc60956a 100644
--- a/pkgs/top-level/python-aliases.nix
+++ b/pkgs/top-level/python-aliases.nix
@@ -269,6 +269,7 @@ mapAliases ({
   python_mimeparse = python-mimeparse; # added 2021-10-31
   python-language-server = throw "python-language-server is no longer maintained, use the python-lsp-server community fork instead."; # Added 2022-08-03
   python-Levenshtein = levenshtein;
+  python-pushover = throw "python-pushover has been removed, since it is unmaintained and is broken"; # added 2023-07-03
   python-subunit = subunit; # added 2021-09-10
   pytest_xdist = pytest-xdist; # added 2021-01-04
   python_simple_hipchat = python-simple-hipchat; # added 2021-07-21
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 6997607a818..7ea124e7ddb 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -10116,8 +10116,6 @@ self: super: with self; {
 
   python-ptrace = callPackage ../development/python-modules/python-ptrace { };
 
-  python-pushover = callPackage ../development/python-modules/pushover { };
-
   python-rapidjson = callPackage ../development/python-modules/python-rapidjson { };
 
   python-rabbitair = callPackage ../development/python-modules/python-rabbitair { };