nixpkgs/pkgs/tools/networking/opendrop/default.nix
2023-11-19 16:48:35 -06:00

64 lines
1.3 KiB
Nix

{ lib
, buildPythonApplication
, fetchFromGitHub
, fleep
, ifaddr
, libarchive-c
, pillow
, requests-toolbelt
, setuptools
, zeroconf
, pytestCheckHook
, openssl
}:
buildPythonApplication rec {
pname = "opendrop";
version = "0.13.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "seemoo-lab";
repo = "opendrop";
rev = "v${version}";
hash = "sha256-4FeVQO7Z6t9mjIgesdjKx4Mi+Ro5EVGJpEFjCvB2SlA=";
};
nativeBuildInputs = [
# Tests fail if I put it on buildInputs
openssl
];
propagatedBuildInputs = [
fleep
ifaddr
libarchive-c
pillow
requests-toolbelt
setuptools
zeroconf
];
makeWrapperArgs = [
"--prefix PATH : ${lib.makeBinPath nativeBuildInputs}"
];
checkInputs = [
pytestCheckHook
];
preCheck = ''
# Solves PermissionError: [Errno 13] Permission denied: '/homeless-shelter'
export HOME=$(mktemp -d)
'';
meta = with lib; {
description = "An open Apple AirDrop implementation written in Python";
homepage = "https://owlink.org/";
changelog = "https://github.com/seemoo-lab/opendrop/releases/tag/${src.rev}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ wolfangaukang ];
mainProgram = "opendrop";
platforms = [ "x86_64-linux" ];
};
}