Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pydy / default.nix
blobc7ee5359bee411208ece607a4b4c41a9eccc3e00
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 , cython
6 , numpy
7 , scipy
8 , sympy
9 , pytestCheckHook
12 buildPythonPackage rec {
13   pname = "pydy";
14   version = "0.7.1";
15   format = "setuptools";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-aaRinJMGR8v/OVkeSp1hA4+QLOrmDWq50wvA6b/suvk=";
20   };
22   propagatedBuildInputs = [
23     numpy
24     scipy
25     sympy
26   ];
28   nativeCheckInputs = [
29     nose
30     cython
31     pytestCheckHook
32   ];
34   disabledTests = [
35     # Tests not fixed yet. Check https://github.com/pydy/pydy/issues/465
36     "test_generate_cse"
37     "test_generate_code_blocks"
38     "test_doprint"
39     "test_OctaveMatrixGenerator"
40   ];
42   meta = with lib; {
43     description = "Python tool kit for multi-body dynamics";
44     homepage = "http://pydy.org";
45     license = licenses.bsd3;
46     maintainers = [ ];
47   };