Commit 41867c08 authored by ocfox's avatar ocfox Committed by Weijia Wang
Browse files

quaternion: init at 2022.4.3

parent ebe44153
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, oldest-supported-numpy
, scipy
, numba
}:

buildPythonPackage rec {
  pname = "quaternion";
  version = "2022.4.3";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "moble";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-iLjVQ6eGwpLQXi8Sr5ShJdXMqYNclGEuq/oxR4ExDLA=";
  };

  propagatedBuildInputs = [
    oldest-supported-numpy
    numba
    scipy
  ];

  meta = with lib; {
    description = "A package add built-in support for quaternions to numpy";
    homepage = "https://github.com/moble/quaternion";
    license = licenses.mit;
    maintainers = [ maintainers.ocfox ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10941,6 +10941,8 @@ self: super: with self; {

  quart-cors = callPackage ../development/python-modules/quart-cors { };

  quaternion = callPackage ../development/python-modules/quaternion { };

  qudida = callPackage ../development/python-modules/qudida { };

  querystring_parser = callPackage ../development/python-modules/querystring-parser { };