mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
Merge pull request #225847 from ocfox/quaternion
python3Packages.quaternion: init at 2022.4.3
This commit is contained in:
commit
2c52b830d4
33
pkgs/development/python-modules/quaternion/default.nix
Normal file
33
pkgs/development/python-modules/quaternion/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -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…
Reference in New Issue
Block a user