python.pkgs.pyalgotrade: fix build

This commit is contained in:
Robert Schütz 2019-03-15 22:18:57 +01:00
parent ae5b83683a
commit 4cf0a12d34

View file

@ -1,23 +1,36 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, matplotlib
, numpy
, scipy
, python-dateutil
, pytz
, requests
, retrying
, scipy
, six
, tornado
, tweepy
, ws4py
}:
buildPythonPackage rec {
pname = "pyalgotrade";
version = "0.20";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
pname = "PyAlgoTrade";
inherit version;
sha256 = "7927c87af202869155280a93ff6ee934bb5b46cdb1f20b70f7407337f8541cbd";
};
propagatedBuildInputs = [ numpy scipy pytz ];
propagatedBuildInputs = [
matplotlib numpy python-dateutil pytz requests
retrying scipy six tornado tweepy ws4py
];
# no tests in PyPI tarball
doCheck = false;
meta = with stdenv.lib; {
description = "Python Algorithmic Trading";