summary refs log tree commit diff
path: root/pkgs/development/python-modules/prox-tv/default.nix
blob: 869ac7457c76e153e88e77cd9fcebc17e17b2f59 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ lib
, blas
, lapack
, buildPythonPackage
, cffi
, fetchFromGitHub
, nose
, numpy
, stdenv
}:

buildPythonPackage {
  pname = "prox-tv";
  version = "3.3.0";

  src = fetchFromGitHub {
    owner = "albarji";
    repo = "proxTV";
    rev = "e621585d5aaa7983fbee68583f7deae995d3bafb";
    sha256 = "0mlrjbb5rw78dgijkr3bspmsskk6jqs9y7xpsgs35i46dvb327q5";
  };

  nativeCheckInputs = [
    nose
  ];

  propagatedBuildInputs = [
    numpy
    cffi
  ];

  # this test is known to fail on darwin
  checkPhase = ''
    nosetests --exclude=test_tvp_1d ${lib.optionalString stdenv.isDarwin " --exclude=test_tv2_1d"}
  '';

  propagatedNativeBuildInputs = [ cffi ];

  buildInputs = [ blas lapack ];

  enableParallelBuilding = true;

  meta = with lib; {
    homepage = "https://github.com/albarji/proxTV";
    description = "A toolbox for fast Total Variation proximity operators";
    license = licenses.bsd2;
    maintainers = with maintainers; [ multun ];
  };
}