1 { lib, buildPythonPackage, fetchFromGitHub
2 , pytest, isPy3k, pyqt5, pyqt ? pyqt5
6 buildPythonPackage rec {
12 # No tests in PyPi tarball
13 src = fetchFromGitHub {
16 rev = "version-${version}";
17 sha256 = "117rp9r4lz0kfz4dmmpa35hp6nhbh6b4xq0jmgvqm68g9hwdxmqa";
21 # add 3.10 compatibility, merged remove on next update
23 url = "https://github.com/harvimt/quamash/pull/126/commits/1e9047bec739dbc9d6ab337fc1a111a8b1090244.patch";
24 hash = "sha256-6gomY82AOKkrt32SEBKnRugzhnC5FAyKDs6K5xaxnRM=";
28 propagatedBuildInputs = [ pyqt ];
30 nativeCheckInputs = [ pytest ];
32 pytest -k 'test_qthreadexec.py' # the others cause the test execution to be aborted, I think because of asyncio
36 description = "Implementation of the PEP 3156 event-loop (asyncio) api using the Qt Event-Loop";
37 homepage = "https://github.com/harvimt/quamash";
38 license = licenses.bsd2;
39 maintainers = with maintainers; [ borisbabic ];