25 # Sensitive downstream dependencies
29 buildPythonPackage rec {
30 pname = "localstack-ext";
35 inherit pname version;
36 hash = "sha256-53pbt7kNaYQRsLb+OI8gLwR3cBE18ZKLZmG4aP1/93E=";
40 # Avoid circular dependency
41 sed -i '/localstack>=/d' setup.cfg
43 # Pip is unable to resolve attr logic, so it will emit version as 0.0.0
44 substituteInPlace setup.cfg \
45 --replace "version = attr: localstack_ext.__version__" "version = ${version}"
48 substituteInPlace setup.cfg \
49 --replace "dill==0.3.2" "dill~=0.3.0" \
50 --replace "requests>=2.20.0,<2.26" "requests~=2.20"
58 propagatedBuildInputs = [
76 pythonImportsCheck = [ "localstack_ext" ];
86 description = "Extensions for LocalStack";
87 homepage = "https://github.com/localstack/localstack";
88 license = licenses.asl20;
89 maintainers = with maintainers; [ jonringer ];