-
-
Save disassembler/809e4b3e91638e8a65c3457b69591742 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { pkgs ? import <nixpkgs> {} | |
| , system ? builtins.currentSystem | |
| }: | |
| let | |
| python = import ./requirements.nix { inherit pkgs; }; | |
| nodePackages = import biblio-client/default.nix { | |
| inherit pkgs system; | |
| }; | |
| in python.mkDerivation { | |
| name = "flask_node.0.0"; | |
| src = ./.; | |
| propagatedBuildInputs = [ | |
| python.packages."Flask-Restless" | |
| python.packages."Flask-JWT" | |
| python.packages."Flask-Security" | |
| python.packages."Flask-Admin" | |
| python.packages."Flask-SQLAlchemy" | |
| pkgs.nodejs | |
| pkgs.nodePackages.node2nix | |
| ]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment