mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
36 lines
651 B
Nix
36 lines
651 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, tkinter
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pysimplegui";
|
|
version = "4.60.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
pname = "PySimpleGUI";
|
|
inherit version;
|
|
sha256 = "sha256-+IyCwwGlGuo1vmBdwGC8zrDctmguFigFRIhHAatLI7o=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
tkinter
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"PySimpleGUI"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python GUIs for Humans";
|
|
homepage = "https://github.com/PySimpleGUI/PySimpleGUI";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ lucasew ];
|
|
};
|
|
}
|