8 buildPythonPackage rec {
11 format = "setuptools";
13 disabled = pythonOlder "3.7";
15 src = fetchFromGitHub {
18 rev = "refs/tags/v${version}";
19 hash = "sha256-Yhb6HSnLdFzWouse/RKZ8SIbMia/hhD8TAovdqmvd7o=";
23 substituteInPlace setup.py \
24 --replace "'pytest-runner', " ""
27 preBuild = "export HOME=$TMP";
29 propagatedBuildInputs = [
33 # Tests require network access
36 pythonImportsCheck = [
41 description = "Pure Python library for simple sync with Open Science Framework";
42 homepage = "https://github.com/psychopy/pyosf";
43 changelog = "https://github.com/psychopy/pyosf/releases/tag/v${version}";
44 license = licenses.mit;
45 maintainers = with maintainers; [ bcdarwin ];