snscrape: init at 0.1.3 (#52758)

This commit is contained in:
Ivan Kozik 2018-12-24 10:42:06 +00:00 committed by Robert Schütz
parent 461552526b
commit 82470c2e3b
3 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, isPy3k
, fetchPypi
, requests
, lxml
, beautifulsoup4
}:
buildPythonPackage rec {
pname = "snscrape";
version = "0.1.3";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "1mnhqqc7xfwg2wrzpj1pjbcisjjwxrgmy21f53p80xbx2iz8b9n1";
};
# There are no tests; make sure the executable works.
checkPhase = ''
export PATH=$PATH:$out/bin
snscrape --help
'';
propagatedBuildInputs = [ requests lxml beautifulsoup4 ];
meta = with lib; {
homepage = https://github.com/JustAnotherArchivist/snscrape;
description = "A social networking service scraper in Python";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ivan ];
};
}

View File

@ -22818,6 +22818,8 @@ in
snapraid = callPackage ../tools/filesystems/snapraid { };
snscrape = with python3Packages; toPythonApplication snscrape;
soundOfSorting = callPackage ../misc/sound-of-sorting { };
sourceAndTags = callPackage ../misc/source-and-tags {

View File

@ -3938,6 +3938,8 @@ in {
snowballstemmer = callPackage ../development/python-modules/snowballstemmer { };
snscrape = callPackage ../development/python-modules/snscrape { };
snug = callPackage ../development/python-modules/snug { };
snuggs = callPackage ../development/python-modules/snuggs { };