summary refs log tree commit diff
path: root/pkgs/development/python-modules/dynd/default.nix
blob: f23d19510ee797da7b951ab83b86ba4920e80b3c (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
{ lib, stdenv
, buildPythonPackage
, isPyPy
, isPy3k
, cython
, numpy
, pkgs
}:

buildPythonPackage rec {
  version = "0.7.2";
  pname = "dynd";
  disabled = isPyPy || !isPy3k; # tests fail on python2, 2018-04-11

  src = pkgs.fetchFromGitHub {
    owner = "libdynd";
    repo = "dynd-python";
    rev = "v${version}";
    sha256 = "19igd6ibf9araqhq9bxmzbzdz05vp089zxvddkiik3b5gb7l17nh";
  };

  # setup.py invokes git on build but we're fetching a tarball, so
  # can't retrieve git version. We hardcode:
  preConfigure = ''
    substituteInPlace setup.py --replace "ver = check_output(['git', 'describe', '--dirty'," "ver = '${version}'"
    substituteInPlace setup.py --replace "'--always', '--match', 'v*']).decode('ascii').strip('\n')" ""
  '';

  dontUseCmakeConfigure = true;

  # Python 3 works but has a broken import test that I couldn't
  # figure out.
  doCheck = !isPy3k;
  nativeBuildInputs = [ pkgs.cmake ];
  buildInputs = [ pkgs.libdynd.dev cython ];
  propagatedBuildInputs = [ numpy pkgs.libdynd ];

  meta = with lib; {
    homepage = "http://libdynd.org";
    license = licenses.bsd2;
    description = "Python exposure of dynd";
    maintainers = with maintainers; [ teh ];
  };

}