Fabian Affolter 2023-11-06 23:42:04 +01:00 committed by Martin Weinelt
parent a28caa5d75
commit 3036b96a4b
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -4,16 +4,17 @@
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, poetry-core , poetry-core
, pydantic , mashumaro
, pytest-asyncio , pytest-asyncio
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, syrupy
, yarl , yarl
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pvo"; pname = "pvo";
version = "2.0.0"; version = "2.1.1";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.11"; disabled = pythonOlder "3.11";
@ -22,7 +23,7 @@ buildPythonPackage rec {
owner = "frenck"; owner = "frenck";
repo = "python-pvoutput"; repo = "python-pvoutput";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-SvsrvGwIAlj/8hdk90+rxigVrx6n3YInvF/4eux2H04="; hash = "sha256-Js8oPEMxJyWK1E6GDm1xwm2BilnV3WBM6Hibf6oFOKE=";
}; };
postPatch = '' postPatch = ''
@ -38,7 +39,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
aiohttp aiohttp
pydantic mashumaro
yarl yarl
]; ];
@ -46,6 +47,7 @@ buildPythonPackage rec {
aresponses aresponses
pytest-asyncio pytest-asyncio
pytestCheckHook pytestCheckHook
syrupy
]; ];
pythonImportsCheck = [ pythonImportsCheck = [