blob: 2066dc3ec02b69e69a86311513c053e37661ad2d (
plain) (
blame)
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
46
47
|
{
bleak,
buildPythonPackage,
fetchFromGitHub,
hatch-regex-commit,
hatchling,
lib,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pynecil";
version = "0.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "tr4nt0r";
repo = "pynecil";
rev = "refs/tags/v${version}";
hash = "sha256-57TPgEC7NY75iVj31tdpCOrXUOcsFBy/4XltEHxlNFk=";
};
build-system = [
hatch-regex-commit
hatchling
];
dependencies = [ bleak ];
pythonImportsCheck = [ "pynecil" ];
nativeCheckInputs = [
pytest-asyncio
pytest-cov-stub
pytestCheckHook
];
meta = {
changelog = "https://github.com/tr4nt0r/pynecil/releases/tag/v${version}";
description = "Python library to communicate with Pinecil V2 soldering irons via Bluetooth";
homepage = "https://github.com/tr4nt0r/pynecil";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|