python311Packages.aiormq: 6.7.6 -> 6.8.0
Diff: 72c44f5531
...6.8.0
Changelog: https://github.com/mosquito/aiormq/releases/tag/6.8.0
This commit is contained in:
parent
179b280c37
commit
21f9f8ba93
@ -3,6 +3,7 @@
|
|||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
, pythonRelaxDepsHook
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pamqp
|
, pamqp
|
||||||
, yarl
|
, yarl
|
||||||
@ -11,21 +12,25 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "aiormq";
|
pname = "aiormq";
|
||||||
version = "6.7.6";
|
version = "6.8.0";
|
||||||
format = "pyproject";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mosquito";
|
owner = "mosquito";
|
||||||
repo = "aiormq";
|
repo = "aiormq";
|
||||||
# https://github.com/mosquito/aiormq/issues/189
|
rev = "refs/tags/${version}";
|
||||||
rev = "72c44f55313fc14e2a760a45a09831237b64c48d";
|
hash = "sha256-XD1g4JXQJlJyXuZbo4hYW7cwQhy8+p4/inwNw2WOD9Y=";
|
||||||
hash = "sha256-IIlna8aQY6bIA7OZHthfvMFFWnf3DDRBP1uiFCD7+Do=";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
poetry-core
|
poetry-core
|
||||||
|
pythonRelaxDepsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonRelaxDeps = [
|
||||||
|
"pamqp"
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
Loading…
Reference in New Issue
Block a user