Merge pull request #235803 from AngryAnt/sv-ttk/init

python3Packages.sv-ttk: init at 2.4.5
This commit is contained in:
Fabian Affolter 2023-06-11 11:05:55 +02:00 committed by GitHub
commit 5427af5a90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "sv-ttk";
version = "2.4.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit version;
pname = "sv_ttk";
hash = "sha256-ysRhRxrml+wmluH8F5AE7vZYXrTNUg5ZzI+26jwpOpc=";
};
# No tests available
doCheck = false;
pythonImportsCheck = [
"sv_ttk"
];
meta = with lib; {
description = "A gorgeous theme for Tkinter/ttk, based on the Sun Valley visual style";
homepage = "https://github.com/rdbende/Sun-Valley-ttk-theme";
changelog = "https://github.com/rdbende/Sun-Valley-ttk-theme/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ AngryAnt ];
};
}

View File

@ -11845,6 +11845,8 @@ self: super: with self; {
svgwrite = callPackage ../development/python-modules/svgwrite { };
sv-ttk = callPackage ../development/python-modules/sv-ttk { };
swagger-spec-validator = callPackage ../development/python-modules/swagger-spec-validator { };
swagger-ui-bundle = callPackage ../development/python-modules/swagger-ui-bundle { };