12 buildPythonPackage rec {
13 pname = "pytest-remotedata";
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
20 inherit pname version;
21 hash = "sha256-BcCL9jjN0e1m6wFzihZHw8cUc3w+w6vgCdLB95O0u1k=";
24 nativeBuildInputs = [ setuptools-scm ];
26 buildInputs = [ pytest ];
28 propagatedBuildInputs = [ six ];
30 __darwinAllowLocalNetworking = true;
32 nativeCheckInputs = [ pytestCheckHook ];
35 # These tests require a network connection
36 "tests/test_strict_check.py"
39 pythonImportsCheck = [ "pytest_remotedata" ];
42 description = "Pytest plugin for controlling remote data access";
43 homepage = "https://github.com/astropy/pytest-remotedata";
44 changelog = "https://github.com/astropy/pytest-remotedata/blob/v${version}/CHANGES.rst";
45 license = licenses.bsd3;