2018-10-26 03:58:46 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-03-15 22:18:57 +01:00
|
|
|
, matplotlib
|
2018-10-26 03:58:46 +02:00
|
|
|
, numpy
|
2019-03-15 22:18:57 +01:00
|
|
|
, python-dateutil
|
2018-10-26 03:58:46 +02:00
|
|
|
, pytz
|
2019-03-15 22:18:57 +01:00
|
|
|
, requests
|
|
|
|
, retrying
|
|
|
|
, scipy
|
|
|
|
, six
|
|
|
|
, tornado
|
|
|
|
, tweepy
|
|
|
|
, ws4py
|
2018-10-26 03:58:46 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyalgotrade";
|
2018-11-04 11:35:11 +01:00
|
|
|
version = "0.20";
|
2018-10-26 03:58:46 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2019-03-15 22:18:57 +01:00
|
|
|
pname = "PyAlgoTrade";
|
|
|
|
inherit version;
|
2018-11-04 11:35:11 +01:00
|
|
|
sha256 = "7927c87af202869155280a93ff6ee934bb5b46cdb1f20b70f7407337f8541cbd";
|
2018-10-26 03:58:46 +02:00
|
|
|
};
|
|
|
|
|
2019-03-15 22:18:57 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
matplotlib numpy python-dateutil pytz requests
|
|
|
|
retrying scipy six tornado tweepy ws4py
|
|
|
|
];
|
|
|
|
|
|
|
|
# no tests in PyPI tarball
|
|
|
|
doCheck = false;
|
2018-10-26 03:58:46 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python Algorithmic Trading";
|
|
|
|
homepage = http://gbeced.github.io/pyalgotrade/;
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|