mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
28 lines
752 B
Nix
28 lines
752 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 ];
|
|
maintainers = [ maintainers.ehmry ];
|
|
};
|
|
}
|