diff options
author | makefu <github@syntax-fehler.de> | 2016-02-15 14:01:20 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-02-15 14:01:24 +0100 |
commit | 0457cd1bb9072dbed13ad74d41ffccd04d8dac20 (patch) | |
tree | 3e8cdd02a40e8d0eacee06fe0a336a77c65ba6e4 /krebs/5pkgs/repo-sync/default.nix | |
parent | e62a0475cd45e30f10d4bce8837b8a776eeb4754 (diff) |
k 3 repo-sync: init module, add git dependency
Diffstat (limited to 'krebs/5pkgs/repo-sync/default.nix')
-rw-r--r-- | krebs/5pkgs/repo-sync/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/krebs/5pkgs/repo-sync/default.nix b/krebs/5pkgs/repo-sync/default.nix index 28fc3970d..789c03f36 100644 --- a/krebs/5pkgs/repo-sync/default.nix +++ b/krebs/5pkgs/repo-sync/default.nix @@ -1,4 +1,5 @@ { lib, pkgs, python3Packages, fetchurl, ... }: + with python3Packages; buildPythonPackage rec { name = "repo-sync-${version}"; version = "0.2.5"; @@ -6,6 +7,7 @@ with python3Packages; buildPythonPackage rec { propagatedBuildInputs = [ docopt GitPython + pkgs.git ]; src = fetchurl { url = "https://pypi.python.org/packages/source/r/repo-sync/repo-sync-${version}.tar.gz"; |