From 31bcdeea80ad90886578f17a5e68eb874606d26f Mon Sep 17 00:00:00 2001 From: NikolaMandic Date: Mon, 23 May 2016 22:31:12 +0000 Subject: [PATCH] pythonPackages.quandl: init at 3.0.0 --- pkgs/top-level/python-packages.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cff0be59fe1..cb8f7a59915 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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";