blob: 429a16ba0e5f8d983cf9912400b3e558c9282d11 (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pyjwt,
setuptools,
}:
buildPythonPackage rec {
pname = "millheater";
version = "0.15.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pymill";
tag = version;
hash = "sha256-7Jqk5WarCA/YBpmFuF4/dbWpQHtKKRH8hYRT2FXn2n8=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
pyjwt
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "mill" ];
meta = {
description = "Python library for Mill heater devices";
homepage = "https://github.com/Danielhiversen/pymill";
changelog = "https://github.com/Danielhiversen/pymill/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|