mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #235803 from AngryAnt/sv-ttk/init
python3Packages.sv-ttk: init at 2.4.5
This commit is contained in:
commit
5427af5a90
34
pkgs/development/python-modules/sv-ttk/default.nix
Normal file
34
pkgs/development/python-modules/sv-ttk/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user