blob: b41d8c5100ece95ceb5c0c25470752b1d32e6b6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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 ];
};
}
|