2017-07-23 19:10:14 +00:00
|
|
|
{ lib, pkgs, python3Packages, fetchFromGitHub, ... }:
|
2016-02-15 13:01:20 +00:00
|
|
|
|
2016-02-11 20:23:04 +00:00
|
|
|
with python3Packages; buildPythonPackage rec {
|
|
|
|
name = "repo-sync-${version}";
|
2017-07-23 19:10:14 +00:00
|
|
|
version = "0.2.7";
|
2016-02-11 20:23:04 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
docopt
|
|
|
|
GitPython
|
2016-02-15 13:01:20 +00:00
|
|
|
pkgs.git
|
2016-02-11 20:23:04 +00:00
|
|
|
];
|
2017-07-23 19:10:14 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-06-12 16:43:12 +00:00
|
|
|
owner = "krebs";
|
2017-07-23 19:10:14 +00:00
|
|
|
repo = "repo-sync";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1qjf1jmxf7xzwskybdys4vqncnwj9f3xwk1gv354zrla68s533cw";
|
2016-02-11 20:23:04 +00:00
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
homepage = http://github.com/makefu/repo-sync;
|
|
|
|
description = "Sync remotes to other remotes.";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
}
|