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