Commit 4bf72dfb authored by Sigmanificient's avatar Sigmanificient
Browse files

python313Package.pydy: 0.7.1 -> 0.8.0

parent 318c8d28
Loading
Loading
Loading
Loading
+2 −16
Original line number Diff line number Diff line
@@ -8,35 +8,21 @@
  setuptools,
  pytestCheckHook,
  cython,
  fetchpatch2,
  nix-update-script,
}:

buildPythonPackage rec {
  pname = "pydy";
  version = "0.7.1";
  version = "0.8.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-aaRinJMGR8v/OVkeSp1hA4+QLOrmDWq50wvA6b/suvk=";
    hash = "sha256-G3iqMzy/W3ctz/c4T3LqYyTTMVbly1GMkmMLi96mzMc=";
  };

  build-system = [ setuptools ];

  patches = [
    # Migrate tests to pytest
    (fetchpatch2 {
      url = "https://github.com/pydy/pydy/commit/e679638fecf80def25f5ed20f01c49c5d931e4d8.patch?full_index=1";
      hash = "sha256-wJmYkyc5Yh0152OyNL5ZbZJxmpX7C65Hqrms4gm3zt0=";
      excludes = [
        ".github/workflows/oldest.yml"
        ".github/workflows/tests.yml"
        "bin/test"
      ];
    })
  ];

  dependencies = [
    numpy
    scipy