Commit c645046b authored by Luke Granger-Brown's avatar Luke Granger-Brown
Browse files

python3.pkgs.textual-slider: init at 0.1.2

parent 486a5160
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  textual,
}:

buildPythonPackage rec {
  pname = "textual-slider";
  version = "0.1.2";

  src = fetchFromGitHub {
    owner = "TomJGooding";
    repo = "textual-slider";
    rev = "91e64bafe3aa72f8d875e76b437d6af9320e039e";
    hash = "sha256-lwN7igiEB8uC9e7qBSVLuKCpF41+Ni7ZJ3cVK19cEY8=";
  };

  pyproject = true;

  build-system = [ setuptools ];

  dependencies = [ textual ];

  meta = with lib; {
    description = "Textual widget for a simple slider";
    homepage = "https://github.com/TomJGooding/textual-slider";
    license = licenses.gpl3Only;
    maintainers = [ maintainers.lukegb ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -15411,6 +15411,8 @@ self: super: with self; {
  textual-dev = callPackage ../development/python-modules/textual-dev { };
  textual-slider = callPackage ../development/python-modules/textual-slider { };
  textual-universal-directorytree = callPackage ../development/python-modules/textual-universal-directorytree { };
  testbook = callPackage ../development/python-modules/testbook { };