nixpkgs/pkgs/development/python-modules/sv-ttk/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

37 lines
809 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
tkinter,
}:
buildPythonPackage rec {
pname = "sv-ttk";
version = "2.6.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit version;
pname = "sv_ttk";
hash = "sha256-P9RAOWyV4w6I9ob88ovkJUgPcyDWvzRvnOpdb1ZwLMI=";
};
# No tests available
doCheck = false;
propagatedBuildInputs = [ tkinter ];
pythonImportsCheck = [ "sv_ttk" ];
meta = with lib; {
description = "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 ];
};
}