working rss feed to nostr publish
This commit is contained in:
@@ -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
|
||||
)
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user