adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

25 lines
640 B
Nix

{ lib, fetchPypi, buildPythonPackage, requests, hidapi }:
buildPythonPackage rec {
pname = "python-u2flib-host";
version = "3.0.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "02pwafd5kyjpc310ys0pgnd0adff1laz18naxxwsfrllqafqnrxb";
};
propagatedBuildInputs = [ requests hidapi ];
# Tests fail: "ValueError: underlying buffer has been detached"
doCheck = false;
meta = with lib; {
description = "Python based U2F host library";
homepage = "https://github.com/Yubico/python-u2flib-host";
license = licenses.bsd2;
maintainers = with maintainers; [ jluttine ];
};
}