From 49c265b8fefdefa30c4949cad18d89be39319910 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 17:20:55 -0400 Subject: [PATCH] pythonPackages.nbval: 0.9.1 -> 0.9.2 fix broken build --- .../python-modules/nbval/default.nix | 24 +++++++++++++------ 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/nbval/default.nix b/pkgs/development/python-modules/nbval/default.nix index c9ab72894ef..d4f9bea11b5 100644 --- a/pkgs/development/python-modules/nbval/default.nix +++ b/pkgs/development/python-modules/nbval/default.nix @@ -15,21 +15,31 @@ buildPythonPackage rec { pname = "nbval"; - version = "0.9.1"; + version = "0.9.2"; src = fetchPypi { inherit pname version; - sha256 = "3f18b87af4e94ccd073263dd58cd3eebabe9f5e4d6ab535b39d3af64811c7eda"; + sha256 = "0g8xl4158ngyhiynrkk72jpawnk4isznbijz0w085g269fps0vp2"; }; - LC_ALL = "en_US.UTF-8"; + checkInputs = [ + pytest + matplotlib + sympy + pytestcov + ]; - buildInputs = [ glibcLocales ]; - checkInputs = [ matplotlib sympy pytestcov ]; - propagatedBuildInputs = [ coverage ipykernel jupyter_client nbformat pytest six ]; + propagatedBuildInputs = [ + coverage + ipykernel + jupyter_client + nbformat + pytest + six + ]; checkPhase = '' - pytest tests --current-env --ignore tests/test_timeouts.py + pytest tests --ignore tests/test_timeouts.py ''; meta = with lib; {