mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 08:44:31 +00:00
python310Packages.types-cryptography: remove because types have been upstreamed
This commit is contained in:
parent
260ed44242
commit
c2aba56310
@ -1,29 +0,0 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, types-enum34
|
||||
, types-ipaddress
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "types-cryptography";
|
||||
version = "3.3.21";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-rRucYxWcAJ+GdsfkGk1ZXfuW6MA6/6Lmk+FheQi7QJ4=";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [
|
||||
"cryptography-stubs"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ types-enum34 types-ipaddress ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Typing stubs for cryptography";
|
||||
homepage = "https://github.com/python/typeshed";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ jpetrucciani ];
|
||||
};
|
||||
}
|
@ -157,6 +157,7 @@ mapAliases ({
|
||||
tensorflow-tensorboard = tensorboard; # added 2022-03-06
|
||||
tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25
|
||||
tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05
|
||||
types-cryptography = throw "types-cryptography has been removed because it is obsolete since cryptography version 3.4.4."; # added 2022-05-30
|
||||
WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29
|
||||
websocket_client = websocket-client; # added 2021-06-15
|
||||
xenomapper = throw "xenomapper was moved to pkgs.xenomapper"; # added 2021-12-31
|
||||
|
@ -10633,8 +10633,6 @@ in {
|
||||
|
||||
typer = callPackage ../development/python-modules/typer { };
|
||||
|
||||
types-cryptography = callPackage ../development/python-modules/types-cryptography { };
|
||||
|
||||
types-dateutil = callPackage ../development/python-modules/types-dateutil { };
|
||||
|
||||
types-decorator = callPackage ../development/python-modules/types-decorator { };
|
||||
|
Loading…
Reference in New Issue
Block a user