File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
development/python-modules/textual-slider Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ buildPythonPackage ,
4+ fetchFromGitHub ,
5+ setuptools ,
6+ textual ,
7+ } :
8+
9+ buildPythonPackage rec {
10+ pname = "textual-slider" ;
11+ version = "0.1.2" ;
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+ }
Original file line number Diff line number Diff line change @@ -15411,6 +15411,8 @@ self: super: with self; {
1541115411
1541215412 textual-dev = callPackage ../development/python-modules/textual-dev { };
1541315413
15414+ textual-slider = callPackage ../development/python-modules/textual-slider { };
15415+
1541415416 textual-universal-directorytree = callPackage ../development/python-modules/textual-universal-directorytree { };
1541515417
1541615418 testbook = callPackage ../development/python-modules/testbook { };
You can’t perform that action at this time.
0 commit comments