Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyalgotrade / default.nix
bloba3014aa2928835cb78cc146f957e32c122f3b576
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , matplotlib
5 , numpy
6 , python-dateutil
7 , pytz
8 , requests
9 , retrying
10 , scipy
11 , six
12 , tornado
13 , tweepy
14 , ws4py
17 buildPythonPackage rec {
18   pname = "pyalgotrade";
19   version = "0.20";
20   format = "setuptools";
22   src = fetchPypi {
23     pname = "PyAlgoTrade";
24     inherit version;
25     sha256 = "7927c87af202869155280a93ff6ee934bb5b46cdb1f20b70f7407337f8541cbd";
26   };
28   propagatedBuildInputs = [
29     matplotlib numpy python-dateutil pytz requests
30     retrying scipy six tornado tweepy ws4py
31   ];
33   # no tests in PyPI tarball
34   doCheck = false;
36   meta = with lib; {
37     description = "Python Algorithmic Trading";
38     homepage = "http://gbeced.github.io/pyalgotrade/";
39     license = licenses.asl20;
40   };