From 6c24392f35c2e67ae05fd52898feccad91fa38ac Mon Sep 17 00:00:00 2001 From: Moraxyc Date: Wed, 22 May 2024 17:58:33 +0800 Subject: [PATCH] python3Packages.pydy: fix build --- .../python-modules/pydy/default.nix | 38 ++++++++----------- 1 file changed, 15 insertions(+), 23 deletions(-) diff --git a/pkgs/development/python-modules/pydy/default.nix b/pkgs/development/python-modules/pydy/default.nix index c7ee5359bee4..613bf2563214 100644 --- a/pkgs/development/python-modules/pydy/default.nix +++ b/pkgs/development/python-modules/pydy/default.nix @@ -1,43 +1,35 @@ -{ lib -, buildPythonPackage -, fetchPypi -, nose -, cython -, numpy -, scipy -, sympy -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchPypi, + numpy, + scipy, + sympy, + setuptools, }: buildPythonPackage rec { pname = "pydy"; version = "0.7.1"; - format = "setuptools"; + + pyproject = true; + build-system = [ setuptools ]; src = fetchPypi { inherit pname version; hash = "sha256-aaRinJMGR8v/OVkeSp1hA4+QLOrmDWq50wvA6b/suvk="; }; - propagatedBuildInputs = [ + dependencies = [ numpy scipy sympy ]; - nativeCheckInputs = [ - nose - cython - pytestCheckHook - ]; + # nose test does not support 3.10 or later + doCheck = false; - disabledTests = [ - # Tests not fixed yet. Check https://github.com/pydy/pydy/issues/465 - "test_generate_cse" - "test_generate_code_blocks" - "test_doprint" - "test_OctaveMatrixGenerator" - ]; + pythonImportsCheck = [ "pydy" ]; meta = with lib; { description = "Python tool kit for multi-body dynamics";