python3Packages.clipman: init at 3.3.3 (#484357)
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user