depot/third_party/nixpkgs/pkgs/development/python-modules/btchip-python/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

46 lines
880 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;
};
}