1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 setuptools,
6 textual,
7}:
8
9buildPythonPackage {
10 pname = "textual-slider";
11 version = "0.2.0";
12
13 src = fetchFromGitHub {
14 owner = "TomJGooding";
15 repo = "textual-slider";
16 rev = "91e64bafe3aa72f8d875e76b437d6af9320e039e";
17 hash = "sha256-lwN7igiEB8uC9e7qBSVLuKCpF41+Ni7ZJ3cVK19cEY8=";
18 };
19
20 pyproject = true;
21
22 build-system = [ setuptools ];
23
24 dependencies = [ textual ];
25
26 meta = with lib; {
27 description = "Textual widget for a simple slider";
28 homepage = "https://github.com/TomJGooding/textual-slider";
29 license = licenses.gpl3Only;
30 maintainers = [ maintainers.lukegb ];
31 };
32}