Skip to content

Instantly share code, notes, and snippets.

@elohmeier
Last active July 29, 2020 08:41
Show Gist options
  • Save elohmeier/e782ca349b19e5aabe6b087e74a4af0e to your computer and use it in GitHub Desktop.
Save elohmeier/e782ca349b19e5aabe6b087e74a4af0e to your computer and use it in GitHub Desktop.
{ buildPythonApplication, fetchFromGitHub, eventlet, flask, flask-socketio, flask_wtf }:
buildPythonApplication rec {
pname = "tinypilot";
version = "2020-07-25";
propagatedBuildInputs = [ eventlet flask flask-socketio flask_wtf ];
# modified src with added setup.py
src = fetchFromGitHub {
owner = "elohmeier";
repo = pname;
rev = "1a716b21080870c6a20a032ec99cfe111309a98a";
sha256 = "1gkkmnzbvl27pshiag9s7nqafvb9ji8rd8pqjfd4gmjjx5wjnjp1";
};
doCheck = false; # no tests
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment