depot/third_party/nixpkgs/pkgs/development/python-modules/customtkinter/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

60 lines
1.6 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools,
tkinter,
darkdetect,
packaging,
typing-extensions,
}:
let
pname = "customtkinter";
version = "5.2.2";
in
buildPythonPackage {
inherit pname version;
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "TomSchimansky";
repo = "CustomTkinter";
rev = "refs/tags/v${version}";
hash = "sha256-1g2wdXbUv5xNnpflFLXvU39s16kmwvuegKWd91E3qm4=";
};
build-system = [
setuptools
tkinter
];
dependencies = [
darkdetect
packaging
typing-extensions
];
patches = [ ./0001-Add-Missing-Cfg-Packages.patch ];
pythonImportsCheck = [ "customtkinter" ];
meta = {
description = "Modern and customizable python UI-library based on Tkinter";
homepage = "https://github.com/TomSchimansky/CustomTkinter";
license = lib.licenses.mit;
longDescription = ''
CustomTkinter is a python UI-library based on Tkinter, which provides
new, modern and fully customizable widgets. They are created and
used like normal Tkinter widgets and can also be used in combination
with normal Tkinter elements. The widgets and the window colors
either adapt to the system appearance or the manually set mode
('light', 'dark'), and all CustomTkinter widgets and windows support
HighDPI scaling (Windows, macOS). With CustomTkinter you'll get
a consistent and modern look across all desktop platforms
(Windows, macOS, Linux).
'';
maintainers = with lib.maintainers; [ donteatoreo ];
};
}