python313Packages.pyiss: init at 1.0.1

This commit is contained in:
Jamie Magee
2025-07-05 21:56:20 -07:00
parent 4b6e5cb1ad
commit da47065ca9
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
requests,
voluptuous,
httmock,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "pyiss";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "HydrelioxGitHub";
repo = "pyiss";
tag = version;
hash = "sha256-bhxeu/06B6ba9RB9p++tRWN/Dp3KUel9DN166HryP1E=";
};
build-system = [ setuptools ];
dependencies = [
requests
voluptuous
];
nativeCheckInputs = [
httmock
unittestCheckHook
];
pythonImportsCheck = [ "pyiss" ];
meta = {
description = "Python library to access International Space Station location and data";
homepage = "https://github.com/HydrelioxGitHub/pyiss";
changelog = "https://github.com/HydrelioxGitHub/pyiss/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -12902,6 +12902,8 @@ self: super: with self; {
pyiskra = callPackage ../development/python-modules/pyiskra { };
pyiss = callPackage ../development/python-modules/pyiss { };
pyisy = callPackage ../development/python-modules/pyisy { };
pyituran = callPackage ../development/python-modules/pyituran { };