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