pythonPackages.nbval: 0.9.1 -> 0.9.2 fix broken build
This commit is contained in:
parent
e5f77fb6ba
commit
49c265b8fe
|
@ -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; {
|
||||
|
|
Loading…
Reference in New Issue