depot/third_party/nixpkgs/pkgs/tools/security/sherlock/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

74 lines
1.5 KiB
Nix

{ lib
, fetchFromGitHub
, makeWrapper
, python3
, unstableGitUpdater
}:
python3.pkgs.buildPythonApplication rec {
pname = "sherlock";
version = "unstable-2024-05-12";
format = "other";
src = fetchFromGitHub {
owner = "sherlock-project";
repo = "sherlock";
rev = "3e978d774b428dce6eed7afbb6606444e7a74924";
hash = "sha256-wa32CSQ9+/PJPep84Tqtzmr6EjD1Bb3guZe5pTOZVnA=";
};
nativeBuildInputs = [ makeWrapper ];
propagatedBuildInputs = with python3.pkgs; [
certifi
colorama
pandas
pysocks
requests
requests-futures
stem
torrequest
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin $out/share
cp -R ./sherlock $out/share
runHook postInstall
'';
postFixup = ''
makeWrapper ${python3.interpreter} $out/bin/sherlock \
--add-flags $out/share/sherlock/sherlock.py \
--prefix PYTHONPATH : "$PYTHONPATH"
'';
checkInputs = with python3.pkgs; [
exrex
];
checkPhase = ''
runHook preCheck
cd $out/share/sherlock
for tests in all test_multiple_usernames; do
${python3.interpreter} -m unittest tests.$tests --verbose
done
runHook postCheck
'';
passthru.updateScript = unstableGitUpdater {
hardcodeZeroVersion = true;
};
meta = with lib; {
homepage = "https://sherlock-project.github.io/";
description = "Hunt down social media accounts by username across social networks";
license = licenses.mit;
mainProgram = "sherlock";
maintainers = with maintainers; [ applePrincess ];
};
}