nixpkgs/pkgs/development/python-modules/sgp4/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
544 B
Nix
Raw Normal View History

2022-11-15 23:02:36 +00:00
{ lib, buildPythonPackage, fetchPypi, numpy }:
2022-02-26 04:11:05 +00:00
buildPythonPackage rec {
pname = "sgp4";
version = "2.21";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-YXm4dQRId+lBYzwgr3ci/SMaiNiomvAb8wvWTzPN7O8=";
};
nativeCheckInputs = [ numpy ];
2022-02-26 04:11:05 +00:00
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 ];
};
}