5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
48 lines
826 B
Nix
48 lines
826 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
, cython
|
|
, numpy
|
|
, scipy
|
|
, sympy
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydy";
|
|
version = "0.7.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-aaRinJMGR8v/OVkeSp1hA4+QLOrmDWq50wvA6b/suvk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
scipy
|
|
sympy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
nose
|
|
cython
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests not fixed yet. Check https://github.com/pydy/pydy/issues/465
|
|
"test_generate_cse"
|
|
"test_generate_code_blocks"
|
|
"test_doprint"
|
|
"test_OctaveMatrixGenerator"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python tool kit for multi-body dynamics";
|
|
homepage = "http://pydy.org";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|