fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
35 lines
732 B
Nix
35 lines
732 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|