3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/pydmd/default.nix

40 lines
779 B
Nix
Raw Normal View History

2021-08-20 23:37:37 +01:00
{ lib
, stdenv
2021-08-20 23:37:37 +01:00
, python
, fetchFromGitHub
, buildPythonPackage
, future
, numpy
, scipy
, matplotlib
, nose
}:
buildPythonPackage rec {
pname = "pydmd";
2021-11-25 22:47:06 +00:00
version = "0.4";
2021-08-20 23:37:37 +01:00
src = fetchFromGitHub {
owner = "mathLab";
repo = "PyDMD";
rev = "v${version}";
2021-11-25 22:47:06 +00:00
sha256 = "1qwa3dyrrm20x0pzr7rklcw7433fd822n4m8bbbdd7z83xh6xm8g";
2021-08-20 23:37:37 +01:00
};
propagatedBuildInputs = [ future numpy scipy matplotlib ];
checkInputs = [ nose ];
checkPhase = ''
${python.interpreter} test.py
'';
pythonImportsCheck = [ "pydmd" ];
meta = {
description = "Python Dynamic Mode Decomposition";
homepage = "https://mathlab.github.io/PyDMD/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ yl3dy ];
broken = stdenv.hostPlatform.isAarch64;
2021-08-20 23:37:37 +01:00
};
}