1{ lib
2, buildPythonPackage
3, fetchPypi
4, nose
5, cython
6, numpy
7, scipy
8, sympy
9}:
10
11buildPythonPackage rec {
12 pname = "pydy";
13 version = "0.5.0";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "1b487a62b55a8c8664009b09bf789254b2c942cd704a380bedb1057418c94fa2";
18 };
19
20 checkInputs = [
21 nose
22 cython
23 ];
24
25 propagatedBuildInputs = [
26 numpy
27 scipy
28 sympy
29 ];
30
31 checkPhase = ''
32 nosetests
33 '';
34
35 meta = with lib; {
36 description = "Python tool kit for multi-body dynamics";
37 homepage = "http://pydy.org";
38 license = licenses.bsd3;
39 maintainers = [ maintainers.costrouc ];
40 };
41}