pythonPackages.quandl: comment on why gitihub and not pypi (3.2.1)

This commit is contained in:
Ilya Kolpakov 2017-12-14 15:28:19 +01:00
parent fde8307846
commit 5551af487f

View file

@ -8,18 +8,16 @@
pyOpenSSL ? null, ndg-httpsclient ? null, pyasn1 ? null
}:
let
buildPythonPackage rec {
pname = "quandl";
version = "3.2.1";
sha256 = "0vc0pzs2px9yaqkqcmd2m1b2bq1iils8fs0xbl0989hjq791a4jr";
in buildPythonPackage rec {
pname = "quandl";
inherit version;
patches = [ ./allow-requests-v2.18.patch ];
# Tests do not work with fetchPypi
src = fetchFromGitHub {
owner = "quandl";
owner = pname;
repo = "quandl-python";
rev = "refs/tags/v${version}";
inherit sha256;