biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / textual-slider / default.nix
blob1a6734a314620da86475d09eeb3dd0a3809e0e1f
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   textual,
7 }:
9 buildPythonPackage rec {
10   pname = "textual-slider";
11   version = "0.1.2";
13   src = fetchFromGitHub {
14     owner = "TomJGooding";
15     repo = "textual-slider";
16     rev = "91e64bafe3aa72f8d875e76b437d6af9320e039e";
17     hash = "sha256-lwN7igiEB8uC9e7qBSVLuKCpF41+Ni7ZJ3cVK19cEY8=";
18   };
20   pyproject = true;
22   build-system = [ setuptools ];
24   dependencies = [ textual ];
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   };