Unverified Commit 08b4f838 authored by Rick van Schijndel's avatar Rick van Schijndel Committed by GitHub
Browse files

Merge pull request #268565 from WolfangAukang/opendrop-openssl

opendrop: cleanup, add openssl to PATH
parents a4032901 deb32e08
Loading
Loading
Loading
Loading
+32 −9
Original line number Diff line number Diff line
{ lib
, buildPythonApplication
, fetchPypi
, fetchFromGitHub
, fleep
, ifaddr
, libarchive-c
, pillow
, requests-toolbelt
, setuptools
, zeroconf }:
, zeroconf
, pytestCheckHook
, openssl
}:

buildPythonApplication rec {
  pname = "opendrop";
  version = "0.13.0";
  format = "setuptools";

  src = fetchPypi {
    inherit version pname;
    sha256 = "sha256-FE1oGpL6C9iBhI8Zj71Pm9qkObJvSeU2gaBZwK1bTQc=";
  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
@@ -26,16 +39,26 @@ buildPythonApplication rec {
    zeroconf
  ];

  # There are tests, but getting the following error:
  # nix_run_setup: error: argument action: invalid choice: 'test' (choose from 'receive', 'find', 'send')
  # Opendrop works as intended though
  doCheck = false;
  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" ];
  };
}