Merge pull request #302148 from RaitoBezarius/pynitrokey

python3Packages.pynitrokey: unbreak
This commit is contained in:
Weijia Wang 2024-04-08 14:57:10 +02:00 committed by GitHub
commit 0a231efe5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 5 deletions

View File

@ -30,7 +30,7 @@
let
pname = "pynitrokey";
version = "0.4.45";
version = "0.4.46";
mainProgram = "nitropy";
in
@ -40,7 +40,7 @@ buildPythonPackage {
src = fetchPypi {
inherit pname version;
hash = "sha256-iY4ThrmXP7pEjTYYU4lePVAbuJGTdHX3iKswXzuf7W8=";
hash = "sha256-y+D90Ja3YkB6WLQuyGOhV56g6ey7iITzNtOCxpRkzXE=";
};
propagatedBuildInputs = [
@ -101,7 +101,7 @@ buildPythonPackage {
homepage = "https://github.com/Nitrokey/pynitrokey";
changelog = "https://github.com/Nitrokey/pynitrokey/releases/tag/v${version}";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ frogamic ];
maintainers = with maintainers; [ frogamic raitobezarius ];
inherit mainProgram;
};
}

View File

@ -70,6 +70,10 @@ buildPythonPackage rec {
"test_diff_to_string"
"test_execute_notebook_with_coverage"
"test_regression_coverage"
"test_collection"
"test_setup_with_skip_meta"
"test_run_fail"
"test_run_pass_with_meta"
];
meta = {

View File

@ -39,14 +39,14 @@
buildPythonPackage rec {
pname = "spsdk";
version = "2.1.0";
version = "2.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "nxp-mcuxpresso";
repo = "spsdk";
rev = "refs/tags/${version}";
hash = "sha256-ZXNqger5WBk2AjTszJLmemYDPClUPy+kNtBWSPcTDro=";
hash = "sha256-cWz2zML/gb9l2C5VEBti+nX3ZLyGbLFyLZGjk5GfTJw=";
};
nativeBuildInputs = [
@ -56,6 +56,9 @@ buildPythonPackage rec {
pythonRelaxDeps = [
"click"
"cryptography"
"platformdirs"
"typing-extensions"
];
propagatedBuildInputs = [