python311Packages.pyspcwebgw: 0.6.0 -> 0.7.0

Diff: https://github.com/mbrrg/pyspcwebgw/compare/refs/tags/v0.6.0...v0.7.0

Changelog: https://github.com/pyspcwebgw/pyspcwebgw/releases/tag/v0.7.0
This commit is contained in:
Fabian Affolter 2023-08-03 19:09:03 +02:00
parent 38a8ca8217
commit 0bc21d64e1

View file

@ -4,6 +4,7 @@
, asynccmd
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytest-asyncio
, pytestCheckHook
, pythonOlder
@ -11,18 +12,22 @@
buildPythonPackage rec {
pname = "pyspcwebgw";
version = "0.6.0";
format = "setuptools";
version = "0.7.0";
format = "pyproject";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "mbrrg";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-Pjv8AxXuwi48Z8U+LSZZ+OhXrE3KlX7jlmnXTBLxXOs=";
hash = "sha256-gdIrbr25GXaX26B1f7u0NKbqqnAC2tmMFZspzW6I4HI=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
asynccmd
aiohttp
@ -43,6 +48,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module for the SPC Web Gateway REST API";
homepage = "https://github.com/mbrrg/pyspcwebgw";
changelog = "https://github.com/pyspcwebgw/pyspcwebgw/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};