Advertisement
Guest User

python with Qt5

a guest
Mar 26th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. { pkgs ? import <nixpkgs> {} }:
  2. let
  3. python-with-modules = pkgs.python37.withPackages (ps: [
  4. ps.pyqt5
  5. ]);
  6. in
  7. with pkgs; mkShell {
  8. buildInputs = [
  9. python-with-modules
  10.  
  11. pkgs.qt5.qtquickcontrols2
  12. pkgs.qt5.qtquickcontrols
  13. pkgs.qt5.qtwayland
  14. ];
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement