pythonPackages.nbval: 0.9.1 -> 0.9.2
This commit is contained in:
parent
52b6651132
commit
6e880c201f
|
@ -15,19 +15,20 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "nbval";
|
pname = "nbval";
|
||||||
version = "0.9.1";
|
version = "0.9.2";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "3f18b87af4e94ccd073263dd58cd3eebabe9f5e4d6ab535b39d3af64811c7eda";
|
sha256 = "0g8xl4158ngyhiynrkk72jpawnk4isznbijz0w085g269fps0vp2";
|
||||||
};
|
};
|
||||||
|
|
||||||
LC_ALL = "en_US.UTF-8";
|
LC_ALL = "en_US.UTF-8";
|
||||||
|
|
||||||
buildInputs = [ glibcLocales ];
|
buildInputs = [ glibcLocales ];
|
||||||
checkInputs = [ matplotlib sympy pytestcov ];
|
checkInputs = [ matplotlib sympy pytestcov pytest ];
|
||||||
propagatedBuildInputs = [ coverage ipykernel jupyter_client nbformat pytest six ];
|
propagatedBuildInputs = [ coverage ipykernel jupyter_client nbformat pytest six ];
|
||||||
|
|
||||||
|
# ignore impure tests
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
pytest tests --current-env --ignore tests/test_timeouts.py
|
pytest tests --current-env --ignore tests/test_timeouts.py
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in New Issue