blob: 61d9571e057eba18f078857a578d97c540800da5 (
about) (
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.2";
pyproject = true;
src = fetchFromGitHub {
owner = "mback2k";
repo = "pywmspro";
tag = version;
hash = "sha256-o/+WjdU9+Vh1CnZYF2IsNpK5cubAFvsqANZ4GxrKFHI=";
};
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 ];
};
}
|