diff options
Diffstat (limited to 'users/wpcarro/scratch/blockchain/default.nix')
-rw-r--r-- | users/wpcarro/scratch/blockchain/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/users/wpcarro/scratch/blockchain/default.nix b/users/wpcarro/scratch/blockchain/default.nix new file mode 100644 index 000000000000..745e7a5ab490 --- /dev/null +++ b/users/wpcarro/scratch/blockchain/default.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: + +let + pypkgs = pkgs.python3Packages; +in pkgs.python3Packages.buildPythonApplication { + pname = "main"; + src = ./.; + version = "0.0.1"; + propagatedBuildInputs = with pypkgs; [ + flask + requests + ]; +} |