9 buildPythonPackage rec {
10 pname = "textual-slider";
13 src = fetchFromGitHub {
14 owner = "TomJGooding";
15 repo = "textual-slider";
16 rev = "91e64bafe3aa72f8d875e76b437d6af9320e039e";
17 hash = "sha256-lwN7igiEB8uC9e7qBSVLuKCpF41+Ni7ZJ3cVK19cEY8=";
22 build-system = [ setuptools ];
24 dependencies = [ textual ];
27 description = "Textual widget for a simple slider";
28 homepage = "https://github.com/TomJGooding/textual-slider";
29 license = licenses.gpl3Only;
30 maintainers = [ maintainers.lukegb ];