pythonPackages.nbval: 0.9.1 -> 0.9.2 fix broken build

This commit is contained in:
Chris Ostrouchov 2019-07-16 17:20:55 -04:00 committed by Frederik Rietdijk
parent e5f77fb6ba
commit 49c265b8fe
1 changed files with 17 additions and 7 deletions

View File

@ -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; {