Unverified Commit 963f723f authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python312Packages.plotnine: 0.13.6 -> 0.14.0; python312Packages.mizani: 0.12.2 -> 0.13.0 (#352084)

parents 1d7098a7 383f7024
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  pythonOlder,
  fetchFromGitHub,

  # build-system
@@ -13,22 +12,20 @@
  pandas,
  scipy,

  # checks
  # tests
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "mizani";
  version = "0.12.2";
  version = "0.13.0";
  pyproject = true;

  disabled = pythonOlder "3.10";

  src = fetchFromGitHub {
    owner = "has2k1";
    repo = "mizani";
    rev = "refs/tags/v${version}";
    hash = "sha256-aTc8LC/2zLrrTfOXABWs049m752PctpvlguA6qhyhp8=";
    hash = "sha256-UzedAhYGgGLOMUyZe3ew4a2gh1UgYHaLsIe9k85rOkg=";
  };

  build-system = [ setuptools-scm ];
+12 −11
Original line number Diff line number Diff line
@@ -2,31 +2,34 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  geopandas,

  # build-system
  setuptools-scm,

  # dependencies
  matplotlib,
  mizani,
  pandas,
  patsy,
  pytestCheckHook,
  pythonOlder,
  scikit-misc,
  scipy,
  setuptools-scm,
  statsmodels,

  # tests
  geopandas,
  pytestCheckHook,
  scikit-misc,
}:

buildPythonPackage rec {
  pname = "plotnine";
  version = "0.13.6";
  version = "0.14.0";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "has2k1";
    repo = "plotnine";
    rev = "refs/tags/v${version}";
    hash = "sha256-/yxRYK3ZTrYj+l3TQhFllyICnJjCZPd4ebNurCLZAYg=";
    hash = "sha256-4x7euxf+G/HaqC3LVD7TCQEVcihdb/FSMqRvMWAqhgo=";
  };

  postPatch = ''
@@ -36,8 +39,6 @@ buildPythonPackage rec {

  build-system = [ setuptools-scm ];

  pythonRelaxDeps = [ "mizani" ];

  dependencies = [
    matplotlib
    mizani