mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +00:00
b915c91482
Pull from GitHub instead of Pypi because of unit testing files.
38 lines
844 B
Nix
38 lines
844 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, certifi, numpy, sgp4, jplephem
|
|
, pandas, ipython, matplotlib, assay
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "skyfield";
|
|
version = "1.42";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "skyfielders";
|
|
repo = "python-skyfield";
|
|
rev = version;
|
|
sha256 = "sha256-aoSkuLhZcEy+13EJQOBHV2/rgmN6aZQHqfj4OOirOG0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ certifi numpy sgp4 jplephem ];
|
|
|
|
checkInputs = [ pandas ipython matplotlib assay ];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
cd ci
|
|
assay --batch skyfield.tests
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [ "skyfield" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/skyfielders/python-skyfield";
|
|
description = "Elegant astronomy for Python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ zane ];
|
|
};
|
|
}
|