1{ buildPythonPackage 2, lib 3, fetchPypi 4}: 5buildPythonPackage rec { 6 pname = "euclid3"; 7 version = "0.01"; 8 format = "setuptools"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-JbgnpXrb/Zo/qGJeQ6vD6Qf2HeYiND5+U4SC75tG/Qs="; 13 }; 14 15 pythonImportsCheck = [ 16 "euclid3" 17 ]; 18 19 meta = with lib; { 20 description = "2D and 3D vector, matrix, quaternion and geometry module."; 21 homepage = "http://code.google.com/p/pyeuclid/"; 22 license = licenses.lgpl21Plus; 23 maintainers = with maintainers; [ jfly matusf ]; 24 }; 25}