lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.socialscan: init at 1.4.2

+47
+43
pkgs/development/python-modules/socialscan/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , colorama 6 + , pythonOlder 7 + , tqdm 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "socialscan"; 12 + version = "1.4.2"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.8"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "iojw"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + sha256 = "rT+/j6UqDOzuNBdN3I74YIxS6qkhd7BjHCGX+gGjprc="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + aiohttp 26 + colorama 27 + tqdm 28 + ]; 29 + 30 + # Tests require network access 31 + doCheck = false; 32 + 33 + pythonImportsCheck = [ 34 + "socialscan" 35 + ]; 36 + 37 + meta = with lib; { 38 + description = "Python library and CLI for accurately querying username and email usage on online platforms"; 39 + homepage = "https://github.com/iojw/socialscan"; 40 + license = with licenses; [ mpl20 ]; 41 + maintainers = with maintainers; [ fab ]; 42 + }; 43 + }
+2
pkgs/top-level/all-packages.nix
··· 28293 28293 28294 28294 soci = callPackage ../development/libraries/soci { }; 28295 28295 28296 + socialscan = with python3.pkgs; toPythonApplication socialscan; 28297 + 28296 28298 sonic-lineup = libsForQt5.callPackage ../applications/audio/sonic-lineup { }; 28297 28299 28298 28300 sonic-visualiser = libsForQt5.callPackage ../applications/audio/sonic-visualiser { };
+2
pkgs/top-level/python-packages.nix
··· 8783 8783 usePython = true; 8784 8784 }); 8785 8785 8786 + socialscan = callPackage ../development/python-modules/socialscan { }; 8787 + 8786 8788 sockjs = callPackage ../development/python-modules/sockjs { }; 8787 8789 8788 8790 sockjs-tornado = callPackage ../development/python-modules/sockjs-tornado { };