
They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pkg-config,
|
|
xcbuild,
|
|
cython,
|
|
setuptools,
|
|
hidapi,
|
|
libusb1,
|
|
udev,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hidapi";
|
|
version = "0.14.0.post4";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-SPziU+Um0XtmP7+ZicccfvdlPO1fS+ZfFDfDE/s9vfY=";
|
|
};
|
|
|
|
build-system = [
|
|
cython
|
|
setuptools
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ xcbuild ];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
|
|
hidapi
|
|
libusb1
|
|
];
|
|
|
|
env = lib.optionalAttrs stdenv.hostPlatform.isLinux {
|
|
HIDAPI_SYSTEM_HIDAPI = true;
|
|
};
|
|
|
|
propagatedBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ udev ];
|
|
|
|
pythonImportsCheck = [ "hid" ];
|
|
|
|
meta = with lib; {
|
|
description = "Cython interface to the hidapi from https://github.com/libusb/hidapi";
|
|
homepage = "https://github.com/trezor/cython-hidapi";
|
|
# license can actually be either bsd3 or gpl3
|
|
# see https://github.com/trezor/cython-hidapi/blob/master/LICENSE-orig.txt
|
|
license = with licenses; [
|
|
bsd3
|
|
gpl3Only
|
|
];
|
|
maintainers = with maintainers; [
|
|
np
|
|
prusnak
|
|
];
|
|
};
|
|
}
|