mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
python3Packages.pyerfa: init at 1.7.1.1
This commit is contained in:
parent
7543a5bf71
commit
182945f285
42
pkgs/development/python-modules/pyerfa/default.nix
Normal file
42
pkgs/development/python-modules/pyerfa/default.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, liberfa
|
||||
, packaging
|
||||
, numpy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyerfa";
|
||||
format = "pyproject";
|
||||
version = "1.7.1.1";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "09i2qcsvxd3q04a5yaf6fwzg79paaslpksinan9d8smj7viql15i";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ packaging ];
|
||||
propagatedBuildInputs = [ liberfa numpy ];
|
||||
preBuild = ''
|
||||
export PYERFA_USE_SYSTEM_LIBERFA=1
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python bindings for ERFA routines";
|
||||
longDescription = ''
|
||||
PyERFA is the Python wrapper for the ERFA library (Essential Routines
|
||||
for Fundamental Astronomy), a C library containing key algorithms for
|
||||
astronomy, which is based on the SOFA library published by the
|
||||
International Astronomical Union (IAU). All C routines are wrapped as
|
||||
Numpy universal functions, so that they can be called with scalar or
|
||||
array inputs.
|
||||
'';
|
||||
homepage = "https://github.com/liberfa/pyerfa";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.rmcgibbo ];
|
||||
};
|
||||
}
|
@ -5117,6 +5117,8 @@ in {
|
||||
|
||||
pyepsg = callPackage ../development/python-modules/pyepsg { };
|
||||
|
||||
pyerfa = callPackage ../development/python-modules/pyerfa { };
|
||||
|
||||
pyexcel = callPackage ../development/python-modules/pyexcel { };
|
||||
|
||||
pyexcelerator = callPackage ../development/python-modules/pyexcelerator { };
|
||||
|
Loading…
Reference in New Issue
Block a user