working rss feed to nostr publish

This commit is contained in:
2023-11-24 00:43:28 -05:00
parent 06edcb57ae
commit 88d2f9cfec
8396 changed files with 783105 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
nativeBuildInputs = [
awscli2
docker
localstack
nodejs_20
(
let my-python-packages = p: with p; [
(
buildPythonPackage rec {
pname = "awscli-local";
version = "0.21.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-MaV5Q4qTISfTLCfB29ZWGXoSwxg/rLGK/ovXE+yaqz0=";
};
doCheck = false;
propagatedBuildInputs = with python3Packages; [ botocore localstack-client ];
}
)
]; in pkgs.python3.withPackages my-python-packages
)
];
}