summary refs log tree commit diff
path: root/pkgs/development/python-modules/euclid3/default.nix
blob: 3d723eca565845874b44046691dad897de0439f9 (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
{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
  pname = "euclid3";
  version = "0.01";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-JbgnpXrb/Zo/qGJeQ6vD6Qf2HeYiND5+U4SC75tG/Qs=";
  };

  pythonImportsCheck = [
    "euclid3"
  ];

  meta = with lib; {
    description = "2D and 3D vector, matrix, quaternion and geometry module.";
    homepage = "http://code.google.com/p/pyeuclid/";
    license = licenses.lgpl21Plus;
    maintainers = with maintainers; [ jfly matusf ];
  };
}