587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
45 lines
950 B
Nix
45 lines
950 B
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, colorama
|
|
, pythonOlder
|
|
, tqdm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "socialscan";
|
|
version = "2.0.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iojw";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-4JJVhB6x1NGagtfzE03Jae2GOr25hh+4l7gQ23zc7Ck=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
colorama
|
|
tqdm
|
|
];
|
|
|
|
# Tests require network access
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"socialscan"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library and CLI for accurately querying username and email usage on online platforms";
|
|
mainProgram = "socialscan";
|
|
homepage = "https://github.com/iojw/socialscan";
|
|
changelog = "https://github.com/iojw/socialscan/releases/tag/v${version}";
|
|
license = with licenses; [ mpl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|