mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
snscrape: init at 0.1.3 (#52758)
This commit is contained in:
parent
461552526b
commit
82470c2e3b
35
pkgs/development/python-modules/snscrape/default.nix
Normal file
35
pkgs/development/python-modules/snscrape/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user