pythonPackages.pydy: init at 0.5.0

This commit is contained in:
Chris Ostrouchov 2019-07-15 10:40:16 -04:00 committed by Frederik Rietdijk
parent b965b4b7ae
commit eceb53f082
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchPypi
, nose
, cython
, numpy
, scipy
, sympy
}:
buildPythonPackage rec {
pname = "pydy";
version = "0.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "1b487a62b55a8c8664009b09bf789254b2c942cd704a380bedb1057418c94fa2";
};
checkInputs = [
nose
cython
];
propagatedBuildInputs = [
numpy
scipy
sympy
];
checkPhase = ''
nosetests
'';
meta = with lib; {
description = "Python tool kit for multi-body dynamics";
homepage = http://pydy.org;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

View File

@ -844,6 +844,8 @@ in {
pydocumentdb = callPackage ../development/python-modules/pydocumentdb { };
pydy = callPackage ../development/python-modules/pydy { };
pyexiv2 = disabledIf isPy3k (toPythonModule (callPackage ../development/python-modules/pyexiv2 {}));
py3exiv2 = callPackage ../development/python-modules/py3exiv2 { };