diff options
Diffstat (limited to 'users/wpcarro/scratch/blockchain/default.nix')
-rw-r--r-- | users/wpcarro/scratch/blockchain/default.nix | 14 |
1 files changed, 14 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..c02f9a9c8108 --- /dev/null +++ b/users/wpcarro/scratch/blockchain/default.nix @@ -0,0 +1,14 @@ +{ pkgs, ... }: + +let + pypkgs = pkgs.python3Packages; +in +pkgs.python3Packages.buildPythonApplication { + pname = "main"; + src = ./.; + version = "0.0.1"; + propagatedBuildInputs = with pypkgs; [ + flask + requests + ]; +} |