1 { lib, stdenv, fetchFromGitHub
2 , python3, qmake, qtbase, qtquickcontrols, qtsvg, ncurses }:
4 stdenv.mkDerivation rec {
8 src = fetchFromGitHub {
12 sha256 = "sha256-IIvL704snJIJbigAgJZ3WWg5a/mX/8qzgFN+dBEClG8=";
15 nativeBuildInputs = [ qmake ];
17 python3 qtbase qtquickcontrols qtsvg ncurses
20 dontWrapQtApps = true;
22 patches = [ ./qml-path.patch ];
23 installTargets = [ "sub-src-install_subtargets" ];
26 description = "Asynchronous Python 3 Bindings for Qt 5";
27 homepage = "https://thp.io/2011/pyotherside/";
28 license = licenses.isc;
29 maintainers = [ maintainers.mic92 ];