nixpkgs/pkgs/development/python-modules/pydy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
843 B
Nix
Raw Normal View History

2019-07-15 14:40:16 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, nose
, cython
, numpy
, scipy
, sympy
2022-05-18 20:50:43 +00:00
, pytestCheckHook
2019-07-15 14:40:16 +00:00
}:
buildPythonPackage rec {
pname = "pydy";
2022-02-05 01:39:51 +00:00
version = "0.6.0";
2022-05-18 20:50:43 +00:00
format = "setuptools";
2019-07-15 14:40:16 +00:00
src = fetchPypi {
inherit pname version;
2022-02-05 01:39:51 +00:00
sha256 = "sha256-e/Ssfd5llioA7ccLULlRdHR113IbR4AJ4/HmzQuU7vI=";
2019-07-15 14:40:16 +00:00
};
propagatedBuildInputs = [
numpy
scipy
sympy
];
2022-05-18 20:50:43 +00:00
checkInputs = [
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"
];
2019-07-15 14:40:16 +00:00
meta = with lib; {
description = "Python tool kit for multi-body dynamics";
homepage = "http://pydy.org";
2019-07-15 14:40:16 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}