ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / mplfinance / default.nix
blobb1d0bf2b9aa92be9165cdd05eb88aa2ee24be5a0
1 { lib, buildPythonPackage, fetchPypi, matplotlib, pandas }:
3 buildPythonPackage rec {
4   pname = "mplfinance";
5   version = "0.12.7a7";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-pATiprTELt8GrEkeKjILPfpdNDVoex5t+Mc+6Gg7cPY=";
10   };
12   propagatedBuildInputs = [ matplotlib pandas ];
14   # tests are only included on GitHub where this version misses a tag
15   # and half of them fail
16   doCheck = false;
18   pythonImportsCheck = [ "mplfinance" ];
20   meta = with lib; {
21     description = "Matplotlib utilities for the visualization, and visual analysis, of financial data";
22     homepage = "https://github.com/matplotlib/mplfinance";
23     license = [ licenses.bsd3 ];
24     maintainers = [ maintainers.ehmry ];
25   };