python313Packages.pyiss: init at 1.0.1 (#422856)

authored by

Martin Weinelt and committed by
GitHub
8fe26091 c128a913

+50 -1
+45
pkgs/development/python-modules/pyiss/default.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + setuptools, 6 + requests, 7 + voluptuous, 8 + httmock, 9 + unittestCheckHook, 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "pyiss"; 14 + version = "1.0.1"; 15 + pyproject = true; 16 + 17 + src = fetchFromGitHub { 18 + owner = "HydrelioxGitHub"; 19 + repo = "pyiss"; 20 + tag = version; 21 + hash = "sha256-bhxeu/06B6ba9RB9p++tRWN/Dp3KUel9DN166HryP1E="; 22 + }; 23 + 24 + build-system = [ setuptools ]; 25 + 26 + dependencies = [ 27 + requests 28 + voluptuous 29 + ]; 30 + 31 + nativeCheckInputs = [ 32 + httmock 33 + unittestCheckHook 34 + ]; 35 + 36 + pythonImportsCheck = [ "pyiss" ]; 37 + 38 + meta = { 39 + description = "Python library to access International Space Station location and data"; 40 + homepage = "https://github.com/HydrelioxGitHub/pyiss"; 41 + changelog = "https://github.com/HydrelioxGitHub/pyiss/releases/tag/${version}"; 42 + license = lib.licenses.mit; 43 + maintainers = [ lib.maintainers.jamiemagee ]; 44 + }; 45 + }
+3 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2805 ]; 2806 "iss" = 2807 ps: with ps; [ 2808 - ]; # missing inputs: pyiss 2809 "ista_ecotrend" = 2810 ps: with ps; [ 2811 fnv-hash-fast ··· 7185 "iskra" 7186 "islamic_prayer_times" 7187 "israel_rail" 7188 "ista_ecotrend" 7189 "isy994" 7190 "ituran"
··· 2805 ]; 2806 "iss" = 2807 ps: with ps; [ 2808 + pyiss 2809 + ]; 2810 "ista_ecotrend" = 2811 ps: with ps; [ 2812 fnv-hash-fast ··· 7186 "iskra" 7187 "islamic_prayer_times" 7188 "israel_rail" 7189 + "iss" 7190 "ista_ecotrend" 7191 "isy994" 7192 "ituran"
+2
pkgs/top-level/python-packages.nix
··· 12904 12905 pyiskra = callPackage ../development/python-modules/pyiskra { }; 12906 12907 pyisy = callPackage ../development/python-modules/pyisy { }; 12908 12909 pyituran = callPackage ../development/python-modules/pyituran { };
··· 12904 12905 pyiskra = callPackage ../development/python-modules/pyiskra { }; 12906 12907 + pyiss = callPackage ../development/python-modules/pyiss { }; 12908 + 12909 pyisy = callPackage ../development/python-modules/pyisy { }; 12910 12911 pyituran = callPackage ../development/python-modules/pyituran { };