1{
2 aiohttp,
3 buildPythonPackage,
4 fetchFromGitHub,
5 lib,
6 setuptools,
7}:
8
9buildPythonPackage rec {
10 pname = "webmin-xmlrpc";
11 version = "0.0.2";
12 pyproject = true;
13
14 src = fetchFromGitHub {
15 owner = "autinerd";
16 repo = "webmin-xmlrpc";
17 tag = version;
18 hash = "sha256-qCS5YV3o7ozO7fDaJucQvU0dEyTbxTivtTDKQVY4pkM=";
19 };
20
21 build-system = [ setuptools ];
22
23 dependencies = [ aiohttp ];
24
25 pythonImportsCheck = [ "webmin_xmlrpc" ];
26
27 # upstream has no tests
28 doCheck = false;
29
30 meta = {
31 changelog = "https://github.com/autinerd/webmin-xmlrpc/releases/tag/${version}";
32 description = "Python interface to interact with the Webmin XML-RPC API";
33 homepage = "https://github.com/autinerd/webmin-xmlrpc";
34 license = lib.licenses.mit;
35 maintainers = with lib.maintainers; [ dotlambda ];
36 };
37}