Disables the `test_touch` test which fails with the following assertion error on hydra darwin only:
```
tmpdir = local('/private/tmp/nix-build-python3.8-fsspec-0.8.3.drv-0/pytest-of-nixbld3/pytest-0/test_touch0')
def test_touch(tmpdir):
import time
fn = tmpdir + "/in/file"
fs = fsspec.filesystem("file", auto_mkdir=False)
with pytest.raises(OSError):
fs.touch(fn)
fs = fsspec.filesystem("file", auto_mkdir=True)
fs.touch(fn)
info = fs.info(fn)
time.sleep(0.2)
fs.touch(fn)
info2 = fs.info(fn)
if not WIN:
> assert info2["mtime"] > info["mtime"]
E assert 1601358357.0 > 1601358357.0
fsspec/implementations/tests/test_local.py:322: AssertionError
```
pyvips: init at 2.1.12
pyvips: init at 2.1.12
Update pkgs/development/python-modules/pyvips/default.nix
Co-authored-by: Jon <jonringer@users.noreply.github.com>
Update pkgs/development/python-modules/pyvips/default.nix
Co-authored-by: Jon <jonringer@users.noreply.github.com>
Update pkgs/development/python-modules/pyvips/default.nix
Co-authored-by: Jon <jonringer@users.noreply.github.com>
Update pkgs/development/python-modules/pyvips/default.nix
Co-authored-by: Jon <jonringer@users.noreply.github.com>
Update pkgs/development/python-modules/pyvips/default.nix
Co-authored-by: Jon <jonringer@users.noreply.github.com>
Update pkgs/top-level/python-packages.nix
Co-authored-by: Jon <jonringer@users.noreply.github.com>
Update pkgs/development/python-modules/pyvips/default.nix
Co-authored-by: Jon <jonringer@users.noreply.github.com>
pyvips: init at 2.1.12
Update pkgs/development/python-modules/pyvips/default.nix
Co-authored-by: Jon <jonringer@users.noreply.github.com>
once we've made some alterations to the source (which doesn't seem to have
been shipped in a ready-to-build state), we can use the funny custom build
system to build a wheel which can then be installed by the pipInstallHook.
running the tests is again annoying because an ini file setting pytest's
python_files parameter is missing, meaning we have to inject our own.
the relaxed version constraints don't seem to be specific avoidance of
buggy versions, just upstream cautiously prohibiting untested versions
if there *are* specific reasons, they're hidden away in upstream's jira
they were only used for performance tests that aren't useful to us -
disabling these tests allows us to decouple from an unnecessary build
dependency.
convert to pytestCheckHook.