depot/third_party/nixpkgs/pkgs/development/python-modules/btchip-python/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

43 lines
875 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hidapi,
pyscard,
ecdsa,
}:
buildPythonPackage rec {
pname = "btchip-python";
version = "0.1.32";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-NPXgwWHAj2XcDQcLov9MMV7SHEt+D6oypGhi0Nwbj1U=";
};
postPatch = ''
# fix extra_requires validation
substituteInPlace setup.py \
--replace "python-pyscard>=1.6.12-4build1" "python-pyscard>=1.6.12"
'';
propagatedBuildInputs = [
hidapi
ecdsa
];
passthru.optional-dependencies.smartcard = [ pyscard ];
# tests requires hardware
doCheck = false;
pythonImportsCheck = [ "btchip.btchip" ];
meta = with lib; {
description = "Python communication library for Ledger Hardware Wallet products";
homepage = "https://github.com/LedgerHQ/btchip-python";
license = licenses.asl20;
};
}