snscrape: 0.2.0 -> 0.3.0

This commit is contained in:
Ivan Kozik 2019-07-01 19:32:16 +00:00
parent 526f12b886
commit 242e3b3c3f

View File

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, isPy3k , isPy3k
, fetchPypi , fetchPypi
, setuptools_scm
, requests , requests
, lxml , lxml
, beautifulsoup4 , beautifulsoup4
@ -9,13 +10,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "snscrape"; pname = "snscrape";
version = "0.2.0"; version = "0.3.0";
disabled = !isPy3k; disabled = !isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "02mlpzkvpl2mv30cknq6ngw02y7gj2614qikq25ncrpg5vb903d9"; sha256 = "1f3lyq06l8s4kcsmwbxcwcxnv6mvz9c3zj70np8vnx149p3zi983";
}; };
# There are no tests; make sure the executable works. # There are no tests; make sure the executable works.
@ -24,6 +25,7 @@ buildPythonPackage rec {
snscrape --help snscrape --help
''; '';
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ requests lxml beautifulsoup4 ]; propagatedBuildInputs = [ requests lxml beautifulsoup4 ];
meta = with lib; { meta = with lib; {