pythonpackages.gspread: fix build

This commit is contained in:
Frederik Rietdijk 2019-08-17 17:56:33 +02:00
parent 113dbfeb27
commit 0e5f6ea243
1 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,7 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, requests
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -12,10 +13,15 @@ buildPythonPackage rec {
sha256 = "f7ce6c06250f694976c3cd4944e3b607b0810b93383839e5b67c7199ce2f0d3d"; sha256 = "f7ce6c06250f694976c3cd4944e3b607b0810b93383839e5b67c7199ce2f0d3d";
}; };
propagatedBuildInputs = [ requests ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Google Spreadsheets client library"; description = "Google Spreadsheets client library";
homepage = "https://github.com/burnash/gspread"; homepage = "https://github.com/burnash/gspread";
license = licenses.mit; license = licenses.mit;
}; };
# No tests included
doCheck = false;
} }