3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.mplfinance: init at 0.12.7a7 (#116728)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Emery Hemingway 2021-03-21 01:31:30 +01:00 committed by GitHub
parent e979d9f55d
commit 2720de622b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib, buildPythonPackage, fetchPypi, matplotlib, pandas }:
buildPythonPackage rec {
pname = "mplfinance";
version = "0.12.7a7";
src = fetchPypi {
inherit pname version;
sha256 = "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 ];
};
}

View file

@ -4373,6 +4373,8 @@ in {
mpi4py = callPackage ../development/python-modules/mpi4py { };
mplfinance = callPackage ../development/python-modules/mplfinance { };
mplleaflet = callPackage ../development/python-modules/mplleaflet { };
mpmath = callPackage ../development/python-modules/mpmath { };