mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
python310Packages.transip: remove
- TransIP SOAP V5 API was marked as deprecated - no longer maintained https://github.com/benkonrath/transip-api/issues/65#issuecomment-1158884743
This commit is contained in:
parent
736c2dfa3e
commit
28a70c103b
@ -1,51 +0,0 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, requests
|
||||
, cryptography
|
||||
, suds-jurko
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "transip";
|
||||
version = "2.0.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "benkonrath";
|
||||
repo = "transip-api";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-J/zcDapry8pm1zozzCDzrQED7vvCR6yoE4NcduBFfZQ=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
cryptography
|
||||
suds-jurko
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# Constructor tests require network access
|
||||
"test_constructor"
|
||||
"testConstructor"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"transip"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "TransIP API Connector";
|
||||
homepage = "https://github.com/benkonrath/transip-api";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ flyfloh ];
|
||||
};
|
||||
}
|
@ -239,6 +239,7 @@ mapAliases ({
|
||||
tensorflow-estimator_2 = tensorflow-estimator; # added 2021-11-25
|
||||
tensorflow-tensorboard = tensorboard; # added 2022-03-06
|
||||
tensorflow-tensorboard_2 = tensorflow-tensorboard; # added 2021-11-25
|
||||
transip = throw "transip has been removed because it is no longer maintained. TransIP SOAP V5 API was marked as deprecated"; # added 2023-02-27
|
||||
tumpa = throw "tumpa was promoted to a top-level attribute"; # added 2022-11-19
|
||||
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
|
||||
|
@ -11702,8 +11702,6 @@ self: super: with self; {
|
||||
|
||||
transforms3d = callPackage ../development/python-modules/transforms3d { };
|
||||
|
||||
transip = callPackage ../development/python-modules/transip { };
|
||||
|
||||
transitions = callPackage ../development/python-modules/transitions { };
|
||||
|
||||
translatepy = callPackage ../development/python-modules/translatepy { };
|
||||
|
Loading…
Reference in New Issue
Block a user