Commit 58a5da13 authored by Jeremy Fleischman's avatar Jeremy Fleischman Committed by Shahar "Dawn" Or
Browse files

python310Packages.euclid3,python311Packages.euclid3: init at 0.01

parent c0210aa3
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3657,6 +3657,8 @@ self: super: with self; {
  et-xmlfile = callPackage ../development/python-modules/et-xmlfile { };
  euclid3 = callPackage ../development/python-modules/euclid3 { };
  eufylife-ble-client = callPackage ../development/python-modules/eufylife-ble-client { };
  evaluate = callPackage ../development/python-modules/evaluate { };