python311Packages.bluecurrent-api: 1.2.1 -> 1.2.3

This commit is contained in:
R. Ryantm 2024-03-23 13:57:30 +00:00 committed by Martin Weinelt
parent 5ee0e14b33
commit 2ce562757c
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
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: {