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:
commit
4a26d79a53
@ -10,24 +10,34 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "ckcc-protocol";
|
pname = "ckcc-protocol";
|
||||||
version = "1.3.2";
|
version = "1.4.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
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
|
# Project has no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "ckcc" ];
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"ckcc"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Communicate with your Coldcard using Python";
|
description = "Communicate with your Coldcard using Python";
|
||||||
homepage = "https://github.com/Coldcard/ckcc-protocol";
|
homepage = "https://github.com/Coldcard/ckcc-protocol";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.hkjn ];
|
maintainers = with maintainers; [ hkjn ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user