1
0

replace fetchGit with pkgs.fetchgit

This commit is contained in:
2022-10-17 23:03:09 +02:00
parent 0b66c298ab
commit 6dc04a8581
9 changed files with 29 additions and 27 deletions

View File

@@ -1,14 +1,15 @@
{
pkgs,
buildPythonPackage,
flask,
python3,
}:
let
src = fetchGit {
src = pkgs.fetchgit {
url = "https://git.clerie.de/clerie/iot-data.git";
ref = "main";
rev = "f60e3a3f89549b4ce88df20888c08a01062d086a";
sha256 = "sha256-D8wusJfYbOkL/Nq6yfYBvhnkBmRcDktORicUpDsIrUE=";
};
pname = "iot-data";
version = "0.0.1";