python3Packages.sgp4: init at 2.21

This commit is contained in:
Zane van Iperen
2022-09-06 01:48:10 +10:00
parent a217911800
commit 76a5da1aae
2 changed files with 24 additions and 0 deletions
@@ -0,0 +1,22 @@
{ 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 ];
};
}
+2
View File
@@ -9958,6 +9958,8 @@ in {
sgmllib3k = callPackage ../development/python-modules/sgmllib3k { };
sgp4 = callPackage ../development/python-modules/sgp4 { };
shamir-mnemonic = callPackage ../development/python-modules/shamir-mnemonic { };
shap = callPackage ../development/python-modules/shap { };