nix-scripts/nixbld-etc-nixos/rfq/pkg.nix

10 lines
314 B
Nix
Raw Normal View History

2020-04-15 21:15:26 +08:00
{ python3Packages, runCommand }:
# Note: we do not use fetchgit but a local copy instead to avoid
# chicken-and-egg problem if reinstalling nixbld.m-labs.hk from scratch.
with python3Packages; buildPythonPackage rec {
name = "rfq";
src = ./src;
propagatedBuildInputs = [ flask flask_mail python-dotenv ];
}