python3Packages.pydmd: init at 0.3.3

This commit is contained in:
Alexander Kiselyov
2021-08-21 13:04:04 +03:00
parent 8256057b1e
commit 3dbd616b0f
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,37 @@
{ lib
, python
, fetchFromGitHub
, buildPythonPackage
, future
, numpy
, scipy
, matplotlib
, nose
}:
buildPythonPackage rec {
pname = "pydmd";
version = "0.3.3";
src = fetchFromGitHub {
owner = "mathLab";
repo = "PyDMD";
rev = "v${version}";
sha256 = "1516dhmpwi12v9ly9jj18wpz9k696q5k6aamlrbby8wp8smajgrv";
};
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 ];
};
}
+2
View File
@@ -5963,6 +5963,8 @@ in {
pydispatcher = callPackage ../development/python-modules/pydispatcher { };
pydmd = callPackage ../development/python-modules/pydmd { };
pydns = callPackage ../development/python-modules/py3dns { };
pydocstyle = callPackage ../development/python-modules/pydocstyle { };