fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
27 lines
561 B
Nix
27 lines
561 B
Nix
{
|
|
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
|
|
];
|
|
};
|
|
}
|