Skip to content

Commit

Permalink
python3Packages.localstack-ext: init at 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Ringer committed Sep 13, 2022
1 parent 979bf1e commit abcfb39
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
59 changes: 59 additions & 0 deletions pkgs/development/python-modules/localstack-ext/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{ lib
, buildPythonPackage
, fetchPypi
, dill
, dnslib
, dnspython
, plux
, pyaes
, python-jose
, requests
, tabulate
}:

buildPythonPackage rec {
pname = "localstack-ext";
version = "1.0.4";

src = fetchPypi {
inherit pname version;
sha256 = "sha256-YNj4V/mv8gn+TEPBejgyMIuSXYmIXNjk5xruyVbf1qA=";
};

postPatch = ''
# Avoid circular dependency
sed -i '/localstack>=/d' setup.cfg
# Pip is unable to resolve attr logic, so it will emit version as 0.0.0
substituteInPlace setup.cfg \
--replace "version = attr: localstack_ext.__version__" "version = ${version}"
cat setup.cfg
substituteInPlace setup.cfg \
--replace "dill==0.3.2" "dill~=0.3.0" \
--replace "requests>=2.20.0,<2.26" "requests~=2.20"
'';

propagatedBuildInputs = [
dill
dnslib
dnspython
plux
pyaes
python-jose
requests
tabulate
];

pythonImportsCheck = [ "localstack_ext" ];

# No tests in repo
doCheck = false;

meta = with lib; {
description = "Extensions for LocalStack";
homepage = "https://github.com/localstack/localstack";
license = licenses.asl20;
maintainers = with maintainers; [ jonringer ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5335,6 +5335,8 @@ in {

localstack-client = callPackage ../development/python-modules/localstack-client { };

localstack-ext = callPackage ../development/python-modules/localstack-ext { };

localzone = callPackage ../development/python-modules/localzone { };

locationsharinglib = callPackage ../development/python-modules/locationsharinglib { };
Expand Down

0 comments on commit abcfb39

Please sign in to comment.