python3Packages.pywmspro: 0.3.5 -> 0.4.1

https://github.com/mback2k/pywmspro/releases/tag/0.4.1
This commit is contained in:
Martin Weinelt 2026-07-04 21:02:07 +02:00
commit 29c43253bb
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -4,19 +4,20 @@
fetchFromGitHub,
hatchling,
hatch-vcs,
aiofiles,
aiohttp,
}:
buildPythonPackage (finalAttrs: {
pname = "pywmspro";
version = "0.3.5";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "mback2k";
repo = "pywmspro";
tag = finalAttrs.version;
hash = "sha256-01jXkSZfmBIzrz0B/4/KLcAU4jUQGDfle4sE4saraJo=";
hash = "sha256-gpAAGrM/dLSD7rCbYM9O3hVCvDb0QA0joZG7h+jTfCg=";
};
build-system = [
@ -24,7 +25,10 @@ buildPythonPackage (finalAttrs: {
hatch-vcs
];
dependencies = [ aiohttp ];
dependencies = [
aiofiles
aiohttp
];
# Package has no tests
doCheck = false;