Unverified Commit 2be00431 authored by Fabián Heredia Montiel's avatar Fabián Heredia Montiel Committed by GitHub
Browse files

python312Packages.succulent: 0.3.4 -> 0.4.0 (#344876)

parents 6a1e1c17 d0b0167a
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -4,17 +4,17 @@
  fetchFromGitHub,
  flask,
  lxml,
  numpy,
  pandas,
  pyyaml,
  poetry-core,
  pytestCheckHook,
  pythonOlder,
  xmltodict,
}:

buildPythonPackage rec {
  pname = "succulent";
  version = "0.3.4";
  version = "0.4.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -23,10 +23,13 @@ buildPythonPackage rec {
    owner = "firefly-cpp";
    repo = "succulent";
    rev = "refs/tags/${version}";
    hash = "sha256-lU4M/ObX2mhHgYsc72zLp87g1lJ6ikfTeEojEdJwjGs=";
    hash = "sha256-rD0qKYmWTu0LMRdWgul8OGp1FcczSY2/OxT8+oXO78E=";
  };

  pythonRelaxDeps = [ "flask" ];
  pythonRelaxDeps = [
    "flask"
    "numpy"
  ];

  nativeBuildInputs = [
    poetry-core
@@ -35,9 +38,9 @@ buildPythonPackage rec {
  propagatedBuildInputs = [
    flask
    lxml
    numpy
    pandas
    pyyaml
    xmltodict
  ];

  nativeCheckInputs = [ pytestCheckHook ];