summaryrefslogtreecommitdiffstats
path: root/krebs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2016-02-11 21:23:04 +0100
committermakefu <github@syntax-fehler.de>2016-02-11 21:23:04 +0100
commit8ecdb889dd3081ba29c6ea7eb35f60b30420d201 (patch)
tree4498ae0fefa27e1b78354cfdf02cfdc92935524e /krebs
parentcb9ff724b6420c9ef54ec0b620710c3632ce5be7 (diff)
k 5 repo-sync: init
Diffstat (limited to 'krebs')
-rw-r--r--krebs/5pkgs/repo-sync/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/krebs/5pkgs/repo-sync/default.nix b/krebs/5pkgs/repo-sync/default.nix
new file mode 100644
index 00000000..90f838de
--- /dev/null
+++ b/krebs/5pkgs/repo-sync/default.nix
@@ -0,0 +1,19 @@
+{ lib, pkgs, python3Packages, fetchurl, ... }:
+with python3Packages; buildPythonPackage rec {
+ name = "repo-sync-${version}";
+ version = "0.1.1";
+ disabled = isPy26 || isPy27;
+ propagatedBuildInputs = [
+ docopt
+ GitPython
+ ];
+ src = fetchurl {
+ url = "https://pypi.python.org/packages/source/r/repo-sync/repo-sync-${version}.tar.gz";
+ sha256 = "01r30l2bbsld90ps13ip0zi2a41b53dv4q6fxrzvkfrprr64c0vv";
+ };
+ meta = {
+ homepage = http://github.com/makefu/repo-sync;
+ description = "Sync remotes to other remotes.";
+ license = lib.licenses.mit;
+ };
+}