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