mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #6948 from kevinmarsh/master
Add gspread python package
This commit is contained in:
commit
4afecb84e3
1 changed files with 16 additions and 0 deletions
|
@ -5139,6 +5139,22 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
gspread = buildPythonPackage rec {
|
||||
version = "0.2.3";
|
||||
name = "gspread-${version}";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/g/gspread/${name}.tar.gz";
|
||||
md5 = "5a71e4e3fc509dc1c4d34722f102dec1";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Google Spreadsheets client library";
|
||||
homepage = "https://github.com/burnash/gspread";
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
gyp = buildPythonPackage rec {
|
||||
rev = "1977";
|
||||
name = "gyp-r${rev}";
|
||||
|
|
Loading…
Reference in a new issue