12 buildPythonPackage rec {
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "python-bindings";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-Nau4ytOSv5WOly/hbHO2M6Rgx1ileJrzfCfNJFnwVaw=";
31 propagatedBuildInputs = [
37 # Disable Test because everything depends on open mpi which requires network
40 # Do not use pythonImportsCheck because this will also initialize mpi which requires a network interface
43 description = "Python language bindings for preCICE";
44 homepage = "https://github.com/precice/python-bindings";
45 license = licenses.lgpl3Only;
46 maintainers = with maintainers; [ Scriptkiddi ];