python310Packages.python-pushover: remove

It is unmaintained and broken.
This commit is contained in:
natsukium 2023-07-03 17:48:19 +09:00
parent 5e6e1ed6f6
commit f53b5bd71f
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
4 changed files with 1 additions and 30 deletions

View File

@ -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 ];
};
}

View File

@ -14823,9 +14823,6 @@
"python-ptrace": [
"setuptools"
],
"python-pushover": [
"setuptools"
],
"python-rabbitair": [
"setuptools"
],

View File

@ -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

View File

@ -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 { };