about summary refs log tree commit diff
path: root/pkgs/development/python-modules/euclid3/default.nix
blob: f929b4b7c0a1b70229cef753b0ed81dc345d92a7 (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
{
  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
    ];
  };
}