mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
python310Packages.python_keyczar: remove
python_keyczar has been archived by upstream
This commit is contained in:
parent
9318364586
commit
a1fe931a51
@ -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;
|
||||
};
|
||||
|
||||
}
|
@ -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
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user