b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
22 lines
547 B
Nix
22 lines
547 B
Nix
{ lib, buildPythonPackage, fetchPypi, tox, numpy }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sgp4";
|
|
version = "2.21";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-YXm4dQRId+lBYzwgr3ci/SMaiNiomvAb8wvWTzPN7O8=";
|
|
};
|
|
|
|
checkInputs = [ tox numpy ];
|
|
|
|
pythonImportsCheck = [ "sgp4" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/brandon-rhodes/python-sgp4";
|
|
description = "Python version of the SGP4 satellite position library";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ zane ];
|
|
};
|
|
}
|