python3Packages.zake: remove

This commit is contained in:
natsukium 2023-06-20 17:44:28 +09:00
parent 030ba16f5c
commit 9584356977
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
3 changed files with 1 additions and 39 deletions

View File

@ -1,37 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, kazoo
, six
, testtools
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "zake";
version = "0.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "1rp4xxy7qp0s0wnq3ig4ji8xsl31g901qkdp339ndxn466cqal2s";
};
propagatedBuildInputs = [ kazoo six ];
buildInputs = [ testtools ];
nativeCheckInputs = [ unittestCheckHook ];
preCheck = ''
# Skip test - fails with our new kazoo version
substituteInPlace zake/tests/test_client.py \
--replace "test_child_watch_no_create" "_test_child_watch_no_create"
'';
unittestFlagsArray = [ "zake/tests" ];
meta = with lib; {
homepage = "https://github.com/yahoo/Zake";
description = "A python package that works to provide a nice set of testing utilities for the kazoo library";
license = licenses.asl20;
broken = true;
};
}

View File

@ -337,6 +337,7 @@ mapAliases ({
xenomapper = throw "xenomapper was moved to pkgs.xenomapper"; # added 2021-12-31
XlsxWriter = xlsxwriter; # added 2023-02-19
Yapsy = yapsy; # added 2023-02-19
zake = throw "zake has been removed because it is abandoned"; # added 2023-06-20
zc-buildout221 = zc-buildout; # added 2021-07-21
zc_buildout_nix = throw "zc_buildout_nix was pinned to a version no longer compatible with other modules";
})

View File

@ -13431,8 +13431,6 @@ self: super: with self; {
zadnegoale = callPackage ../development/python-modules/zadnegoale { };
zake = callPackage ../development/python-modules/zake { };
zamg = callPackage ../development/python-modules/zamg { };
zarr = callPackage ../development/python-modules/zarr { };