blob: ab29bfcf57d4ad26da6ba606ba7cdd32534ab6f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
hatch-vcs,
aiohttp,
}:
buildPythonPackage rec {
pname = "pywmspro";
version = "0.3.3";
pyproject = true;
src = fetchFromGitHub {
owner = "mback2k";
repo = "pywmspro";
tag = version;
hash = "sha256-cQ2qDVH7CfCj3he4f01tkwVrgCuE+NxSTeKINh75gxc=";
};
build-system = [
hatchling
hatch-vcs
];
dependencies = [ aiohttp ];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "wmspro" ];
meta = {
description = "Python library for WMS WebControl pro API";
homepage = "https://github.com/mback2k/pywmspro";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
|