2016-02-11 20:23:04 +00:00
|
|
|
{ lib, pkgs, python3Packages, fetchurl, ... }:
|
2016-02-15 13:01:20 +00:00
|
|
|
|
2016-02-11 20:23:04 +00:00
|
|
|
with python3Packages; buildPythonPackage rec {
|
|
|
|
name = "repo-sync-${version}";
|
2016-05-02 15:38:55 +00:00
|
|
|
version = "0.2.6";
|
2016-02-11 20:23:04 +00:00
|
|
|
disabled = isPy26 || isPy27;
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
docopt
|
|
|
|
GitPython
|
2016-02-15 13:01:20 +00:00
|
|
|
pkgs.git
|
2016-02-11 20:23:04 +00:00
|
|
|
];
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://pypi.python.org/packages/source/r/repo-sync/repo-sync-${version}.tar.gz";
|
2016-05-02 15:38:55 +00:00
|
|
|
sha256 = "1hqa9qw9qg7mxgniqzys9szycs05llg4yik8a9wz94a437zzarsk";
|
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;
|
|
|
|
};
|
|
|
|
}
|