Commit 0e9e9014 authored by Doron Behar's avatar Doron Behar
Browse files

python313Packages.lmfit: 1.3.3 -> 1.3.4

parent bac1b62b
Loading
Loading
Loading
Loading
+2 −10
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchpatch,
  asteval,
  dill,
  fetchPypi,
@@ -19,22 +18,15 @@

buildPythonPackage rec {
  pname = "lmfit";
  version = "1.3.3";
  version = "1.3.4";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-czIea4gfL2hiNXIaffwCr2uw8DCiXv62Zjj2KxxgU6E=";
    hash = "sha256-PCLCjEP3F/bFtKO9geiTohSXOcJqWSwEby4zwjz75Jc=";
  };
  patches = [
    # https://github.com/lmfit/lmfit-py/issues/999
    (fetchpatch {
      url = "https://github.com/lmfit/lmfit-py/commit/d4f4e3755d50cb9720c616fcff2cd7b58fbabba5.patch";
      hash = "sha256-h1WK3ajnoX3pOZOduFBKpPz3exfoKzkbO/QNgROLT7c=";
    })
  ];

  build-system = [
    setuptools