summary refs log tree commit diff
path: root/pkgs/development/python-modules/ovito/default.nix
blob: 694b87581cd64f37edd776e2d060fe2bd3c63ef3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchgit
, cmake
, libav, netcdf, qscintilla, zlib, boost, git, fftw, hdf5, libssh
, pythonPackages
}:

stdenv.mkDerivation {
  # compilation error in 2.9.0 https://gitlab.com/stuko/ovito/issues/40
  # This is not the "released" 3.0.0 just a commit
  version = "3.0.0";
  pname = "ovito";

  src = fetchgit {
    url = "https://gitlab.com/stuko/ovito";
    rev = "a28c28182a879d2a1b511ec56f9845306dd8a4db";
    sha256 = "1vqzv3gzwf8r0g05a7fj8hdyvnzq2h3wdfck7j6n1av6rvp7hi5r";
  };

  buildInputs = [ cmake libav netcdf qscintilla zlib boost zlib git fftw hdf5 libssh ];
  propagatedBuildInputs = with pythonPackages; [ sphinx numpy sip pyqt5 matplotlib ase ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Scientific visualization and analysis software for atomistic simulation data";
    homepage = https://www.ovito.org;
    license = licenses.gpl3;
    maintainers = [ maintainers.costrouc ];
    # ensures not built on hydra
    # https://github.com/NixOS/nixpkgs/pull/46846#issuecomment-436388048
    hydraPlatforms = [ ];
  };
}