587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
33 lines
669 B
Nix
33 lines
669 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, oldest-supported-numpy
|
|
, scipy
|
|
, numba
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "quaternion";
|
|
version = "2023.0.3";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moble";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-vSkFHYXcT14aW3OTfqYymVQbpWnKFEVkhh3IQTi5xS4=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|