stockholm/krebs/5pkgs/repo-sync/default.nix

22 lines
590 B
Nix
Raw Normal View History

2016-02-11 20:23:04 +00:00
{ lib, pkgs, python3Packages, fetchurl, ... }:
2016-02-11 20:23:04 +00:00
with python3Packages; buildPythonPackage rec {
name = "repo-sync-${version}";
2016-02-12 01:41:38 +00:00
version = "0.2.5";
2016-02-11 20:23:04 +00:00
disabled = isPy26 || isPy27;
propagatedBuildInputs = [
docopt
GitPython
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-02-12 01:41:38 +00:00
sha256 = "1a59bj0vc5ajq8indkvkdk022yzvvv5mjb57hk3xf1j3wpr85p84";
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;
};
}