Unverified Commit b19ad2b0 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #232185 from fabaff/python_keyczar-fix

python310Packages.python_keyczar: remove
parents 4e3617b9 a1fe931a
Loading
Loading
Loading
Loading
+0 −27
Original line number Diff line number Diff line
{ 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;
  };

}
+1 −0
Original line number Diff line number Diff line
@@ -235,6 +235,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
+0 −2
Original line number Diff line number Diff line
@@ -9734,8 +9734,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;
  };