Unverified Commit 4a26d79a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python310Packages.ckcc-protocol: 1.3.2 -> 1.4.0
parents 3302298e 7850a3cf
Loading
Loading
Loading
Loading
+15 −5
Original line number Diff line number Diff line
@@ -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 ];
  };
}