nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 35 lines 651 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, tkinter 5, pythonOlder 6}: 7 8buildPythonPackage rec { 9 pname = "pysimplegui"; 10 version = "4.59.0"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.6"; 14 15 src = fetchPypi { 16 pname = "PySimpleGUI"; 17 inherit version; 18 sha256 = "sha256-GW6BwKQ36sSJNZXy7mlRW5hB5gjTUb08V33XqRNFT1E="; 19 }; 20 21 propagatedBuildInputs = [ 22 tkinter 23 ]; 24 25 pythonImportsCheck = [ 26 "PySimpleGUI" 27 ]; 28 29 meta = with lib; { 30 description = "Python GUIs for Humans"; 31 homepage = "https://github.com/PySimpleGUI/PySimpleGUI"; 32 license = licenses.lgpl3Plus; 33 maintainers = with maintainers; [ lucasew ]; 34 }; 35}