summary refs log tree commit diff
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-09-11 02:40:01 -0400
committerGitHub <noreply@github.com>2019-09-11 02:40:01 -0400
commit87b22ea005cbc851ed58c3ef501dc0d746b891d0 (patch)
tree6800d61b8f831cd07b1d262ce553c3ee1d268686
parent64b11ebf1cd36e0464dd4b9103fb3a87c92e8bc6 (diff)
parent7e7c98a1993f20021fa7531136674a64c6cda003 (diff)
downloadnixpkgs-87b22ea005cbc851ed58c3ef501dc0d746b891d0.tar
nixpkgs-87b22ea005cbc851ed58c3ef501dc0d746b891d0.tar.gz
nixpkgs-87b22ea005cbc851ed58c3ef501dc0d746b891d0.tar.bz2
nixpkgs-87b22ea005cbc851ed58c3ef501dc0d746b891d0.tar.lz
nixpkgs-87b22ea005cbc851ed58c3ef501dc0d746b891d0.tar.xz
nixpkgs-87b22ea005cbc851ed58c3ef501dc0d746b891d0.tar.zst
nixpkgs-87b22ea005cbc851ed58c3ef501dc0d746b891d0.zip
Merge pull request #68472 from ivan/snscrape-fix
snscrape: fix startup
-rw-r--r--pkgs/development/python-modules/snscrape/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/snscrape/default.nix b/pkgs/development/python-modules/snscrape/default.nix
index a97d2e82c34..18a7c2bb209 100644
--- a/pkgs/development/python-modules/snscrape/default.nix
+++ b/pkgs/development/python-modules/snscrape/default.nix
@@ -3,6 +3,7 @@
 , isPy3k
 , fetchPypi
 , setuptools_scm
+, setuptools
 , requests
 , lxml
 , beautifulsoup4
@@ -26,7 +27,7 @@ buildPythonPackage rec {
   '';
 
   nativeBuildInputs = [ setuptools_scm ];
-  propagatedBuildInputs = [ requests lxml beautifulsoup4 ];
+  propagatedBuildInputs = [ setuptools requests lxml beautifulsoup4 ];
 
   meta = with lib; {
     homepage = https://github.com/JustAnotherArchivist/snscrape;