19 buildPythonPackage rec {
25 inherit pname version;
26 hash = "sha256-CqSnwzdOw2FTodCPgeMIDoPYrB7v2X0vT+lUTo+bSd4=";
30 substituteInPlace tests/test_icecream.py \
31 --replace assertRegexpMatches assertRegex
34 nativeBuildInputs = [ setuptools ];
36 propagatedBuildInputs = [
43 nativeCheckInputs = [ pytestCheckHook ];
46 # icecream.icecream.NoSourceAvailableError
47 "testSingledispatchArgumentToString"
48 # AssertionError: assert [[('REPL (e.g...ion?', None)]] == [[('a', '1')], [('c', '3')]]
53 description = "Little library for sweet and creamy print debugging";
54 homepage = "https://github.com/gruns/icecream";
55 license = licenses.mit;
56 maintainers = with maintainers; [ renatoGarcia ];