python3Packages.transforms3d: init at unstable-2019-12-17
This commit is contained in:
parent
ebb63137ad
commit
dca8b1bdd0
36
pkgs/development/python-modules/transforms3d/default.nix
Normal file
36
pkgs/development/python-modules/transforms3d/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, isPy27
|
||||
, pytest
|
||||
, numpy
|
||||
, scipy
|
||||
, sympy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "transforms3d";
|
||||
version = "unstable-2019-12-17";
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
# no Git tag or PyPI release in some time
|
||||
src = fetchFromGitHub {
|
||||
owner = "matthew-brett";
|
||||
repo = pname;
|
||||
rev = "6b20250c610249914ca5e3a3a2964c36ca35c19a";
|
||||
sha256 = "1z789hgk71a6rj6mqp9srpzamg06g58hs2p1l1p344cfnkj5a4kc";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ numpy sympy ];
|
||||
|
||||
checkInputs = [ pytest scipy ];
|
||||
checkPhase = "pytest transforms3d";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://matthew-brett.github.io/transforms3d";
|
||||
description = "Convert between various geometric transformations";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
};
|
||||
}
|
@ -1467,6 +1467,8 @@ in {
|
||||
|
||||
transformers = callPackage ../development/python-modules/transformers { };
|
||||
|
||||
transforms3d = callPackage ../development/python-modules/transforms3d { };
|
||||
|
||||
sentinel = callPackage ../development/python-modules/sentinel { };
|
||||
|
||||
sentry-sdk = callPackage ../development/python-modules/sentry-sdk {};
|
||||
|
Loading…
Reference in New Issue
Block a user