Skip to content

Commit

Permalink
pythonPackages.quandl: init at 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaMandic authored and FRidh committed May 28, 2016
1 parent de070bb commit 31bcdee
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -27160,6 +27160,36 @@ in modules // {
};
};


Quandl = buildPythonPackage rec {
version = "3.0.0";
name = "Quandl-${version}";

src = pkgs.fetchurl {
url= "mirror://pypi/q/quandl/${name}.tar.gz";
sha256 = "d4e698eb39291e0b281975813054101f3dfb379dead10d34d7b536e1aad60584";
};

propagatedBuildInputs = with self; [
numpy
ndg-httpsclient
dateutil
inflection
moreItertools
requests2
pandas
];

#No tests in archive
doCheck = false;

meta = {
homepage = https://github.com/quandl/quandl-python;
description = "A Python library for Quandl’s RESTful API";
maintainers = with maintainers; [ NikolaMandic ];
};
};

queuelib = buildPythonPackage rec {
name = "queuelib-${version}";
version = "1.4.2";
Expand Down

0 comments on commit 31bcdee

Please sign in to comment.