bedup: 0.10 -> 0.10.1, fix eval
bedup is not available for Python 2, our current default.
This commit is contained in:
parent
93da6c9578
commit
06395c6baf
|
@ -11067,7 +11067,7 @@ in
|
||||||
|
|
||||||
bluez = bluez5;
|
bluez = bluez5;
|
||||||
|
|
||||||
inherit (pythonPackages) bedup;
|
inherit (python3Packages) bedup;
|
||||||
|
|
||||||
bridge-utils = callPackage ../os-specific/linux/bridge-utils { };
|
bridge-utils = callPackage ../os-specific/linux/bridge-utils { };
|
||||||
|
|
||||||
|
|
|
@ -2037,13 +2037,14 @@ in modules // {
|
||||||
};
|
};
|
||||||
|
|
||||||
bedup = buildPythonPackage rec {
|
bedup = buildPythonPackage rec {
|
||||||
version = "0.10";
|
version = "0.10.1";
|
||||||
name = "bedup-${version}";
|
name = "bedup-${version}";
|
||||||
|
|
||||||
src = pkgs.fetchgit {
|
src = pkgs.fetchFromGitHub {
|
||||||
url = "https://github.com/g2p/bedup.git";
|
owner = "g2p";
|
||||||
rev = "598fd4b";
|
repo = "bedup";
|
||||||
sha256 = "0cwnifv5mk5rgil0rcibqchz7y8nzpdpi3k2s9wbqcynjl7l49ln";
|
rev = "v${version}";
|
||||||
|
sha256 = "0sp8pmjkxcqq0alianfp41mwq7qj10rk1qy31pjjp9kiph1rn0x6";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with self; [ pkgs.btrfs-progs ];
|
buildInputs = with self; [ pkgs.btrfs-progs ];
|
||||||
|
@ -2052,9 +2053,6 @@ in modules // {
|
||||||
|
|
||||||
disabled = pythonOlder "3.3";
|
disabled = pythonOlder "3.3";
|
||||||
|
|
||||||
# No proper test suite. Included tests cannot be run because of relative import
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Deduplication for Btrfs";
|
description = "Deduplication for Btrfs";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
|
Loading…
Reference in New Issue