repo-sync: bump to 0.2.7
This commit is contained in:
parent
200b973fa9
commit
fd7d1531ac
@ -1,17 +1,19 @@
|
|||||||
{ lib, pkgs, python3Packages, fetchurl, ... }:
|
{ lib, pkgs, python3Packages, fetchFromGitHub, ... }:
|
||||||
|
|
||||||
with python3Packages; buildPythonPackage rec {
|
with python3Packages; buildPythonPackage rec {
|
||||||
name = "repo-sync-${version}";
|
name = "repo-sync-${version}";
|
||||||
version = "0.2.6";
|
version = "0.2.7";
|
||||||
disabled = isPy26 || isPy27;
|
disabled = isPy26 || isPy27;
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
docopt
|
docopt
|
||||||
GitPython
|
GitPython
|
||||||
pkgs.git
|
pkgs.git
|
||||||
];
|
];
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://pypi.python.org/packages/source/r/repo-sync/repo-sync-${version}.tar.gz";
|
owner = "krebscode";
|
||||||
sha256 = "1hqa9qw9qg7mxgniqzys9szycs05llg4yik8a9wz94a437zzarsk";
|
repo = "repo-sync";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1qjf1jmxf7xzwskybdys4vqncnwj9f3xwk1gv354zrla68s533cw";
|
||||||
};
|
};
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://github.com/makefu/repo-sync;
|
homepage = http://github.com/makefu/repo-sync;
|
||||||
|
Loading…
Reference in New Issue
Block a user