Merge pull request #255205 from r-ryantm/auto-update/python310Packages.ckcc-protocol

python310Packages.ckcc-protocol: 1.3.2 -> 1.4.0
This commit is contained in:
Fabian Affolter 2023-09-15 12:30:52 +02:00 committed by GitHub
commit 4a26d79a53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,24 +10,34 @@
buildPythonPackage rec {
pname = "ckcc-protocol";
version = "1.3.2";
version = "1.4.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-4y5pe0CFD3C1+N0kP/2j9Wser2zkn8Uf4203ci45Rq0=";
hash = "sha256-zZPU0+MwjqRYCqa+W0YTqCZv2WsMwa9R5xaN7ye77OU=";
};
propagatedBuildInputs = [ click ecdsa hidapi pyaes ];
propagatedBuildInputs = [
click
ecdsa
hidapi
pyaes
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "ckcc" ];
pythonImportsCheck = [
"ckcc"
];
meta = with lib; {
description = "Communicate with your Coldcard using Python";
homepage = "https://github.com/Coldcard/ckcc-protocol";
license = licenses.mit;
maintainers = [ maintainers.hkjn ];
maintainers = with maintainers; [ hkjn ];
};
}