Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sgp4 / default.nix
blobdaa6a08f67f153263a47a0de05235338ce36b78f
1 { lib, buildPythonPackage, fetchPypi, numpy }:
3 buildPythonPackage rec {
4   pname = "sgp4";
5   version = "2.23";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-2K3cU6L7n4je5r/UAdKGWwFMwLV78s7mm97o2WhdVCk=";
11   };
13   nativeCheckInputs = [ numpy ];
15   pythonImportsCheck = [ "sgp4" ];
17   meta = with lib; {
18     homepage = "https://github.com/brandon-rhodes/python-sgp4";
19     description = "Python version of the SGP4 satellite position library";
20     license = licenses.mit;
21     maintainers = with maintainers; [ zane ];
22   };