3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.aiortm: 0.3.1 -> 0.4.0

Changelog: https://github.com/MartinHjelmare/aiortm/blob/v0.4.0/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2023-01-02 11:10:23 +01:00
parent 3224a38912
commit 0e13b48dcf

View file

@ -1,8 +1,10 @@
<{ lib { lib
, aiohttp , aiohttp
, aioresponses
, buildPythonPackage , buildPythonPackage
, click , click
, fetchFromGitHub , fetchFromGitHub
, pydantic
, poetry-core , poetry-core
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
@ -11,7 +13,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiortm"; pname = "aiortm";
version = "0.3.1"; version = "0.4.0";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
@ -20,7 +22,7 @@ buildPythonPackage rec {
owner = "MartinHjelmare"; owner = "MartinHjelmare";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-DTFynPFf0NUBieXDiMKhCNwBqx3s/xzggNmnz/IKjbU="; hash = "sha256-cdCKcwpQ+u3CkMiPfMf6DnH2SYc7ab8q5W72aEEnNx4=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -30,10 +32,12 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
aiohttp aiohttp
click click
pydantic
yarl yarl
]; ];
checkInputs = [ checkInputs = [
aioresponses
pytestCheckHook pytestCheckHook
]; ];