Loading pkgs/development/python-modules/quaternion/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/quaternion/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading