Revert "python3Packages.localstack-ext: 2.3.2 -> 3.0.2"

This reverts commit e0c191827f.
This commit is contained in:
Martin Weinelt 2024-04-26 01:43:29 +02:00
parent 3db1aaefed
commit 175c714aff
1 changed files with 10 additions and 34 deletions

View File

@ -1,26 +1,14 @@
{ lib
, buildPythonPackage
, fetchPypi
# build-system
, setuptools
, plux
# dependencies
, cachetools
, click
, cryptography
, dill
, dnslib
, dnspython
, psutil
, python-dotenv
, pyyaml
, plux
, pyaes
, python-jose
, requests
, rich
, semver
, stevedore
, tailer
, tabulate
# Sensitive downstream dependencies
, localstack
@ -28,12 +16,12 @@
buildPythonPackage rec {
pname = "localstack-ext";
version = "3.0.2";
pyproject = true;
version = "2.3.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-KNM/HjSWVwenLqtXbaRP70k7b7YXk//aKGEkBxPp1fA=";
hash = "sha256-Ex5ZPlteDaiyex90QumucVdTTbpp9uWiBrvw1kMr++8=";
};
postPatch = ''
@ -50,27 +38,15 @@ buildPythonPackage rec {
--replace "requests>=2.20.0,<2.26" "requests~=2.20"
'';
nativeBuildInputs = [
plux
setuptools
];
propagatedBuildInputs = [
cachetools
click
cryptography
dill
dnslib
dnspython
plux
psutil
python-dotenv
pyyaml
rich
pyaes
python-jose
requests
semver
stevedore
tailer
tabulate
];
pythonImportsCheck = [ "localstack_ext" ];