From a1fe931a516386ce1c6f563a488f214aea77a545 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 16 May 2023 10:51:52 +0200 Subject: [PATCH] python310Packages.python_keyczar: remove python_keyczar has been archived by upstream --- .../python-modules/python_keyczar/default.nix | 27 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 -- 3 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 pkgs/development/python-modules/python_keyczar/default.nix diff --git a/pkgs/development/python-modules/python_keyczar/default.nix b/pkgs/development/python-modules/python_keyczar/default.nix deleted file mode 100644 index 66cf28a15dde..000000000000 --- a/pkgs/development/python-modules/python_keyczar/default.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pyasn1 -, pycrypto -}: - -buildPythonPackage rec { - pname = "python-keyczar"; - version = "0.716"; - - src = fetchPypi { - inherit pname version; - sha256 = "f9b614112dc8248af3d03b989da4aeca70e747d32fe7e6fce9512945365e3f83"; - }; - - buildInputs = [ pyasn1 pycrypto ]; - - meta = with lib; { - description = "Toolkit for safe and simple cryptography"; - homepage = "https://pypi.python.org/pypi/python-keyczar"; - license = licenses.asl20; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.unix; - }; - -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index aa22f83daf26..84f1f4c08028 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -232,6 +232,7 @@ mapAliases ({ pytestrunner = pytest-runner; # added 2021-01-04 python-forecastio = throw "python-forecastio has been removed, as the Dark Sky service was shut down."; # added 2023-04-05 python-igraph = igraph; # added 2021-11-11 + python_keyczar = throw "python_keyczar has been removed because it's been archived upstream and deprecated"; # added 2023-05-16 python-lz4 = lz4; # added 2018-06-01 python_magic = python-magic; # added 2022-05-07 python_mimeparse = python-mimeparse; # added 2021-10-31 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 348b9e913e3d..f490588d8e08 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9732,8 +9732,6 @@ self: super: with self; { python-jsonrpc-server = callPackage ../development/python-modules/python-jsonrpc-server { }; - python_keyczar = callPackage ../development/python-modules/python_keyczar { }; - python-ldap = callPackage ../development/python-modules/python-ldap { inherit (pkgs) openldap cyrus_sasl; };