summary refs log tree commit diff
path: root/pkgs/development/python-modules/transforms3d/default.nix
blob: 8b21e64e9a7ec40befbb478bc02fedfb76a2a754 (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
, pytest
, numpy
, scipy
, sympy
}:

buildPythonPackage rec {
  pname = "transforms3d";
  version = "unstable-2019-12-17";

  disabled = isPy27;

  # no Git tag or PyPI release in some time
  src = fetchFromGitHub {
    owner = "matthew-brett";
    repo = pname;
    rev = "6b20250c610249914ca5e3a3a2964c36ca35c19a";
    sha256 = "1z789hgk71a6rj6mqp9srpzamg06g58hs2p1l1p344cfnkj5a4kc";
  };

  propagatedBuildInputs = [ numpy sympy ];

  checkInputs = [ pytest scipy ];
  checkPhase = "pytest transforms3d";

  meta = with lib; {
    homepage = "https://matthew-brett.github.io/transforms3d";
    description = "Convert between various geometric transformations";
    license = licenses.bsd2;
    maintainers = with maintainers; [ bcdarwin ];
  };
}