python312Packages.webmin-xmlrpc: init at 0.0.2
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
{
|
||||
aiohttp,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "webmin-xmlrpc";
|
||||
version = "0.0.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "autinerd";
|
||||
repo = "webmin-xmlrpc";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-qCS5YV3o7ozO7fDaJucQvU0dEyTbxTivtTDKQVY4pkM=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ aiohttp ];
|
||||
|
||||
pythonImportsCheck = [ "webmin_xmlrpc" ];
|
||||
|
||||
# upstream has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/autinerd/webmin-xmlrpc/releases/tag/${version}";
|
||||
description = "Python interface to interact with the Webmin XML-RPC API";
|
||||
homepage = "https://github.com/autinerd/webmin-xmlrpc";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
||||
@@ -17348,6 +17348,8 @@ self: super: with self; {
|
||||
|
||||
webexteamssdk = callPackage ../development/python-modules/webexteamssdk { };
|
||||
|
||||
webmin-xmlrpc = callPackage ../development/python-modules/webmin-xmlrpc { };
|
||||
|
||||
webob = callPackage ../development/python-modules/webob { };
|
||||
|
||||
webrtc-noise-gain = callPackage ../development/python-modules/webrtc-noise-gain { };
|
||||
|
||||
Reference in New Issue
Block a user