Merge pull request #203343 from tjni/spsdk

python310Packages.spsdk: fix build by relaxing versions
This commit is contained in:
Ryan Lahfa 2022-12-04 16:44:08 +01:00 committed by GitHub
commit cba218194b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 1 deletions

View file

@ -59,6 +59,8 @@ buildPythonPackage rec {
nativeBuildInputs = [ pythonRelaxDepsHook ];
pythonRelaxDeps = [
"bincopy"
"bitstring"
"cmsis-pack-manager"
"cryptography"
"deepmerge"

View file

@ -10850,7 +10850,7 @@ with pkgs;
pympress = callPackage ../applications/office/pympress { };
pyocd = python3Packages.callPackage ../development/embedded/pyocd { };
pyocd = with python3Packages; toPythonApplication pyocd;
pypass = with python3Packages; toPythonApplication pypass;

View file

@ -8266,6 +8266,8 @@ self: super: with self; {
pyobihai = callPackage ../development/python-modules/pyobihai { };
pyocd = callPackage ../development/python-modules/pyocd { };
pyocr = callPackage ../development/python-modules/pyocr {
tesseract = pkgs.tesseract4;
};