1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
72 lines
1.4 KiB
Nix
72 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
coverage,
|
|
ipykernel,
|
|
jupyter-client,
|
|
nbformat,
|
|
pytestCheckHook,
|
|
pytest,
|
|
glibcLocales,
|
|
matplotlib,
|
|
sympy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nbval";
|
|
version = "0.11.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-d8lXl2B7CpaLq9JZfuNJQQLSXDrTdDXeu9rA5G43kJQ=";
|
|
};
|
|
|
|
buildInputs = [ glibcLocales ];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
coverage
|
|
ipykernel
|
|
jupyter-client
|
|
nbformat
|
|
pytest
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
matplotlib
|
|
sympy
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"tests/test_ignore.py"
|
|
# These are the main tests but they're fragile so skip them. They error
|
|
# whenever matplotlib outputs any unexpected warnings, e.g. deprecation
|
|
# warnings.
|
|
"tests/test_unit_tests_in_notebooks.py"
|
|
# Impure
|
|
"tests/test_timeouts.py"
|
|
# No value for us
|
|
"tests/test_coverage.py"
|
|
# nbdime marked broken
|
|
"tests/test_nbdime_reporter.py"
|
|
];
|
|
|
|
# Some of the tests use localhost networking.
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
pythonImportsCheck = [ "nbval" ];
|
|
|
|
meta = {
|
|
description = "Py.test plugin to validate Jupyter notebooks";
|
|
homepage = "https://github.com/computationalmodelling/nbval";
|
|
changelog = "https://github.com/computationalmodelling/nbval/releases/tag/${version}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|