Merge pull request #175392 from SuperSandro2000/types-cryptography
python310Packages.types-cryptography: remove because types have been upstreamed
This commit is contained in:
commit
fd17f167b6
4 changed files with 2 additions and 61 deletions
|
@ -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 ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{ lib
|
|
||||||
, buildPythonPackage
|
|
||||||
, fetchPypi
|
|
||||||
, types-cryptography
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "types-paramiko";
|
|
||||||
version = "2.10.0";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "sha256-q2iT1fzl7QaWTWGTntanFoqxSVKUWpCZWmKKXoKl4WE=";
|
|
||||||
};
|
|
||||||
|
|
||||||
pythonImportsCheck = [
|
|
||||||
"paramiko-stubs"
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ types-cryptography ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Typing stubs for paramiko";
|
|
||||||
homepage = "https://github.com/python/typeshed";
|
|
||||||
license = licenses.asl20;
|
|
||||||
maintainers = with maintainers; [ jpetrucciani ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -160,6 +160,8 @@ mapAliases ({
|
||||||
tensorflow-tensorboard = tensorboard; # added 2022-03-06
|
tensorflow-tensorboard = tensorboard; # added 2022-03-06
|
||||||
tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25
|
tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25
|
||||||
tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05
|
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
|
||||||
|
types-paramiko = throw "types-paramiko has been removed because it was unused."; # added 2022-05-30
|
||||||
WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29
|
WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29
|
||||||
webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29
|
webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29
|
||||||
websocket_client = websocket-client; # added 2021-06-15
|
websocket_client = websocket-client; # added 2021-06-15
|
||||||
|
|
|
@ -10658,8 +10658,6 @@ in {
|
||||||
|
|
||||||
typer = callPackage ../development/python-modules/typer { };
|
typer = callPackage ../development/python-modules/typer { };
|
||||||
|
|
||||||
types-cryptography = callPackage ../development/python-modules/types-cryptography { };
|
|
||||||
|
|
||||||
types-dateutil = callPackage ../development/python-modules/types-dateutil { };
|
types-dateutil = callPackage ../development/python-modules/types-dateutil { };
|
||||||
|
|
||||||
types-decorator = callPackage ../development/python-modules/types-decorator { };
|
types-decorator = callPackage ../development/python-modules/types-decorator { };
|
||||||
|
@ -10674,8 +10672,6 @@ in {
|
||||||
|
|
||||||
types-ipaddress = callPackage ../development/python-modules/types-ipaddress { };
|
types-ipaddress = callPackage ../development/python-modules/types-ipaddress { };
|
||||||
|
|
||||||
types-paramiko = callPackage ../development/python-modules/types-paramiko { };
|
|
||||||
|
|
||||||
types-protobuf = callPackage ../development/python-modules/types-protobuf { };
|
types-protobuf = callPackage ../development/python-modules/types-protobuf { };
|
||||||
|
|
||||||
types-pytz = callPackage ../development/python-modules/types-pytz { };
|
types-pytz = callPackage ../development/python-modules/types-pytz { };
|
||||||
|
|
Loading…
Reference in a new issue