mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 02:53:55 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
38 lines
874 B
Nix
38 lines
874 B
Nix
{ 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;
|
|
};
|
|
|
|
}
|