about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/mplfinance/default.nix
blob: 91d89c8b9a284aa1644c0b1a505ef966de6c8146 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, buildPythonPackage, fetchPypi, matplotlib, pandas }:

buildPythonPackage rec {
  pname = "mplfinance";
  version = "0.12.7a7";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-pATiprTELt8GrEkeKjILPfpdNDVoex5t+Mc+6Gg7cPY=";
  };

  propagatedBuildInputs = [ matplotlib pandas ];

  # tests are only included on GitHub where this version misses a tag
  # and half of them fail
  doCheck = false;

  pythonImportsCheck = [ "mplfinance" ];

  meta = with lib; {
    description = "Matplotlib utilities for the visualization, and visual analysis, of financial data";
    homepage = "https://github.com/matplotlib/mplfinance";
    license = [ licenses.bsd3 ];
    maintainers = [ maintainers.ehmry ];
  };
}