10 buildPythonPackage rec {
14 # pypi sdist misses requirements.txt
15 src = fetchFromGitHub {
19 hash = "sha256-0FWdYbv+paVU3Wj6g9OrSNUB0pH8fLwTkhVIBPeFB/U=";
23 sed -i '/pytest-runner/d' setup.py
26 propagatedBuildInputs = [ ply six ];
28 checkInputs = [ pytestCheckHook mock ];
30 # try to import from `test` directory, which is exported by the python interpreter
31 # and cannot be overriden without removing some py3 to py2 support
33 "test/test_tsd_types.py"
34 "test/test_js_client.py"
37 "test_type_name_with_module"
40 pythonImportsCheck = [ "stone" ];
43 description = "Official Api Spec Language for Dropbox";
44 homepage = "https://github.com/dropbox/stone";
45 license = licenses.mit;
46 maintainers = with maintainers; [ jonringer ];