nixpkgs/pkgs/development/python-modules/zake/default.nix
Linus Heckemann 5aa4b19946 treewide: mark some broken packages as broken
Refs:
e6754980264fe927320d5ff2dbd24ca4fac9a160
1e9cc5b9844ef603fe160e9f671178f96200774f
793a2fe1e8bb886ca2096c5904e1193dc3268b6d
c19cf65261639f749012454932a532aa7c681e4b
f6544d618f30fae0bc4798c4387a8c7c9c047a7c
2019-10-08 17:14:26 +02:00

37 lines
847 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, kazoo
, six
, testtools
, python
}:
buildPythonPackage rec {
pname = "zake";
version = "0.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "1rp4xxy7qp0s0wnq3ig4ji8xsl31g901qkdp339ndxn466cqal2s";
};
propagatedBuildInputs = [ kazoo six ];
buildInputs = [ testtools ];
checkPhase = ''
# 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"
${python.interpreter} -m unittest discover zake/tests
'';
meta = with stdenv.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;
};
}