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.

42 lines
612 B
Nix
Raw Normal View History

2019-07-15 15:40:16 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, nose
, cython
, numpy
, scipy
, sympy
}:
buildPythonPackage rec {
pname = "pydy";
2022-02-05 01:39:51 +00:00
version = "0.6.0";
2019-07-15 15:40:16 +01:00
src = fetchPypi {
inherit pname version;
2022-02-05 01:39:51 +00:00
sha256 = "sha256-e/Ssfd5llioA7ccLULlRdHR113IbR4AJ4/HmzQuU7vI=";
2019-07-15 15:40:16 +01:00
};
checkInputs = [
nose
cython
];
propagatedBuildInputs = [
numpy
scipy
sympy
];
checkPhase = ''
nosetests
'';
meta = with lib; {
description = "Python tool kit for multi-body dynamics";
homepage = "http://pydy.org";
2019-07-15 15:40:16 +01:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}