Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 27 lines 515 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, requests 5}: 6 7buildPythonPackage rec { 8 version = "3.1.0"; 9 pname = "gspread"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "f7ce6c06250f694976c3cd4944e3b607b0810b93383839e5b67c7199ce2f0d3d"; 14 }; 15 16 propagatedBuildInputs = [ requests ]; 17 18 meta = with stdenv.lib; { 19 description = "Google Spreadsheets client library"; 20 homepage = "https://github.com/burnash/gspread"; 21 license = licenses.mit; 22 }; 23 24 # No tests included 25 doCheck = false; 26 27}