From 8c9f06e5b5a54dd96e10b051fa5ebb78962ec04d Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 6 Apr 2020 12:21:27 -0700 Subject: python3Packages.monty: fix tests --- pkgs/development/python-modules/monty/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'pkgs/development/python-modules') diff --git a/pkgs/development/python-modules/monty/default.nix b/pkgs/development/python-modules/monty/default.nix index 427f0af45730..fb84847acff7 100644 --- a/pkgs/development/python-modules/monty/default.nix +++ b/pkgs/development/python-modules/monty/default.nix @@ -29,6 +29,13 @@ buildPythonPackage rec { checkInputs = [ lsof nose numpy msgpack coverage coveralls pymongo]; propagatedBuildInputs = [ six ruamel_yaml ]; + # test suite tries to decode bytes, but msgpack now returns a str + # https://github.com/materialsvirtuallab/monty/pull/121 + postPatch = '' + substituteInPlace tests/test_serialization.py \ + --replace ".decode('utf-8')" "" + ''; + preCheck = '' substituteInPlace tests/test_os.py \ --replace 'self.assertEqual("/usr/bin/find", which("/usr/bin/find"))' '#' -- cgit 1.4.1