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:
commit
5ea5d6e2eb
2 changed files with 9 additions and 11 deletions
|
@ -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
|
||||
];
|
||||
|
|
|
@ -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: {
|
||||
|
|
Loading…
Reference in a new issue