ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / zake / default.nix
blobf144bc9d2c43c0fc5edae40d72043e6e966029e8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , kazoo
5 , six
6 , testtools
7 , unittestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "zake";
12   version = "0.2.2";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "1rp4xxy7qp0s0wnq3ig4ji8xsl31g901qkdp339ndxn466cqal2s";
17   };
19   propagatedBuildInputs = [ kazoo six ];
20   buildInputs = [ testtools ];
21   checkInputs = [ unittestCheckHook ];
22   preCheck = ''
23     # Skip test - fails with our new kazoo version
24     substituteInPlace zake/tests/test_client.py \
25       --replace "test_child_watch_no_create" "_test_child_watch_no_create"
26   '';
28   unittestFlagsArray = [ "zake/tests" ];
30   meta = with lib; {
31     homepage = "https://github.com/yahoo/Zake";
32     description = "A python package that works to provide a nice set of testing utilities for the kazoo library";
33     license = licenses.asl20;
34     broken = true;
35   };