blob: f1fd346539d91aa2b8437e0a31aef709b50fd722 (
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
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
hatchling,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "turrishw";
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "turris-cz";
repo = "turrishw";
tag = "v${version}";
hash = "sha256-LQ1ebcVQo7jixAKOPg/oNBnRU8AZebHANfDU4lamB8g=";
};
build-system = [ hatchling ];
nativeCheckInputs = [ pytestCheckHook ];
# Tests don't work on darwin
doCheck = !stdenv.hostPlatform.isDarwin;
pythonImportsCheck = [ "turrishw" ];
meta = {
description = "Python library and program for Turris hardware listing";
homepage = "https://github.com/turris-cz/turrishw";
changelog = "https://github.com/turris-cz/turrishw/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|