about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/snscrape/default.nix
blob: 972ea3149f9481717280a161d0fbe53471f0aa89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 ];
  };
}