nixpkgs/pkgs/development/python-modules/btchip-python/default.nix
Martin Weinelt 495afbe66d python310Packages.btchip-python: Fix extra_requires version specifier
And reformat, expose optional-dependencies, set explicit format.
2023-03-03 23:59:32 +01:00

47 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;
};
}