python310Packages.plotnine: 0.9.0 -> 0.10.1
Changelog: https://github.com/has2k1/plotnine/releases/tag/v0.10.1
This commit is contained in:
parent
780be3d617
commit
0207af197f
1 changed files with 23 additions and 13 deletions
|
@ -1,26 +1,36 @@
|
|||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, matplotlib
|
||||
, scipy
|
||||
, patsy
|
||||
, pandas
|
||||
, statsmodels
|
||||
, pytestCheckHook
|
||||
, geopandas
|
||||
, scikit-misc
|
||||
, adjusttext
|
||||
, mizani }:
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, geopandas
|
||||
, matplotlib
|
||||
, mizani
|
||||
, pandas
|
||||
, patsy
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, scikit-misc
|
||||
, scipy
|
||||
, setuptools-scm
|
||||
, statsmodels
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "plotnine";
|
||||
version = "0.9.0";
|
||||
version = "0.10.1";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-DompMBXzxx1oRKx6qfsNoJuQj199+n3V1opcoysuvOo=";
|
||||
hash = "sha256-2RKgS2ONz4IsUaZ4i4VmQjI0jVFfFR2zpkwAAZZvaEE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace " --cov=plotnine --cov-report=xml" ""
|
||||
|
|
Loading…
Reference in a new issue