Unverified Commit bd975a47 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python3Packages.clipman: init at 3.3.3 (#484357)

parents 8312ea65 a57b9162
Loading
Loading
Loading
Loading
+45 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  dbus-next,
  setuptools,
  setuptools-scm,
}:

buildPythonPackage (finalAttrs: {
  pname = "clipman";
  version = "3.3.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "NikitaBeloglazov";
    repo = "clipman";
    tag = "v${finalAttrs.version}";
    hash = "sha256-m50yxbbMBLooVQD1QYQi6QekaiQlzTHXSJIMdU+/+Rw=";
  };

  buildInputs = [
    dbus-next
  ];

  build-system = [
    setuptools
    setuptools-scm
  ];

  pythonImportsCheck = [
    "clipman"
  ];

  # no tests
  doCheck = false;

  meta = {
    homepage = "https://github.com/NikitaBeloglazov/clipman";
    description = "Python3 module for working with clipboard";
    license = lib.licenses.mpl20;
    maintainers = with lib.maintainers; [ Freed-Wu ];
    platforms = lib.platforms.unix;
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -2822,6 +2822,8 @@ self: super: with self; {
  clip-anytorch = callPackage ../development/python-modules/clip-anytorch { };
  clipman = callPackage ../development/python-modules/clipman { };
  clize = callPackage ../development/python-modules/clize { };
  clldutils = callPackage ../development/python-modules/clldutils { };