Merge pull request #298368 from r-ryantm/auto-update/python311Packages.bluecurrent-api

python311Packages.bluecurrent-api: 1.2.1 -> 1.2.3
This commit is contained in:
Martin Weinelt 2024-03-23 23:10:58 +01:00 committed by GitHub
commit 5ea5d6e2eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 11 deletions

View File

@ -2,7 +2,6 @@
, buildPythonPackage
, pythonOlder
, fetchPypi
, pythonRelaxDepsHook
, setuptools
, pytz
, websockets
@ -13,26 +12,21 @@
buildPythonPackage rec {
pname = "bluecurrent-api";
version = "1.2.1";
version = "1.2.3";
pyproject = true;
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.11";
src = fetchPypi {
inherit pname version;
hash = "sha256-vr6mehGRXHW+fP2luLpD14igCdIgJI5NXzaa+bEife0=";
hash = "sha256-mWRTSMS68+J1Z4PYOFF/UvofSqV1wv0gjiTACEWDfNg=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
build-system = [
setuptools
];
pythonRemoveDeps = [
"asyncio"
];
propagatedBuildInputs = [
dependencies = [
pytz
websockets
];

View File

@ -141,6 +141,10 @@ let
inherit version;
hash = "sha256-XHVdtkiG0ff/OY8g+W5iur7OAyhhk1UGA+XUfB2L8/o=";
};
build-system = oldAttrs.build-system ++ (with self; [
pythonRelaxDepsHook
]);
pythonRemoveDeps = [ "asyncio" ];
});
debugpy = super.debugpy.overridePythonAttrs (oldAttrs: {