summary refs log tree commit diff
path: root/pkgs/development/python-modules/scikit-fmm/default.nix
blob: 122af8cfda23a8413ebb6e65747a3e2c58dbf168 (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
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, python
}:

buildPythonPackage rec {
  pname = "scikit-fmm";
  version = "2019.1.30";

  src = fetchPypi {
    inherit pname version;
    sha256 = "eb64b6d8e30b8df8f8636d5fc4fd7ca6a9b05938ccd62518c80c1d9e823069dd";
  };

  propagatedBuildInputs = [
    numpy
  ];

  checkPhase = ''
    mkdir testdir; cd testdir
    ${python.interpreter} -c "import skfmm, sys; sys.exit(skfmm.test())"
  '';

  meta = with lib; {
    description = "A Python extension module which implements the fast marching method";
    homepage = https://github.com/scikit-fmm/scikit-fmm;
    license = licenses.bsd3;
    maintainers = with maintainers; [ costrouc ];
  };
}