lol

python310Packages.ckcc-protocol: add format

authored by

Fabian Affolter and committed by
GitHub
7850a3cf b7bb3df5

+13 -3
+13 -3
pkgs/development/python-modules/ckcc-protocol/default.nix
··· 11 buildPythonPackage rec { 12 pname = "ckcc-protocol"; 13 version = "1.4.0"; 14 disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { ··· 18 hash = "sha256-zZPU0+MwjqRYCqa+W0YTqCZv2WsMwa9R5xaN7ye77OU="; 19 }; 20 21 - propagatedBuildInputs = [ click ecdsa hidapi pyaes ]; 22 23 # Project has no tests 24 doCheck = false; 25 - pythonImportsCheck = [ "ckcc" ]; 26 27 meta = with lib; { 28 description = "Communicate with your Coldcard using Python"; 29 homepage = "https://github.com/Coldcard/ckcc-protocol"; 30 license = licenses.mit; 31 - maintainers = [ maintainers.hkjn ]; 32 }; 33 }
··· 11 buildPythonPackage rec { 12 pname = "ckcc-protocol"; 13 version = "1.4.0"; 14 + format = "setuptools"; 15 + 16 disabled = pythonOlder "3.6"; 17 18 src = fetchPypi { ··· 20 hash = "sha256-zZPU0+MwjqRYCqa+W0YTqCZv2WsMwa9R5xaN7ye77OU="; 21 }; 22 23 + propagatedBuildInputs = [ 24 + click 25 + ecdsa 26 + hidapi 27 + pyaes 28 + ]; 29 30 # Project has no tests 31 doCheck = false; 32 + 33 + pythonImportsCheck = [ 34 + "ckcc" 35 + ]; 36 37 meta = with lib; { 38 description = "Communicate with your Coldcard using Python"; 39 homepage = "https://github.com/Coldcard/ckcc-protocol"; 40 license = licenses.mit; 41 + maintainers = with maintainers; [ hkjn ]; 42 }; 43 }