blob: 7b6729592a3ab576ca1ddb18fa1e5fdf59727414 (
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
|
{
authlib,
buildPythonPackage,
fetchFromGitHub,
httpx,
lib,
setuptools,
}:
buildPythonPackage rec {
pname = "pysenz";
version = "1.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "nordicopen";
repo = "pysenz";
tag = "v${version}";
hash = "sha256-gS9dsGQ8waOlUbHWHiJbQrvh4RdFb4SNEH4J4TbT2x8=";
};
build-system = [ setuptools ];
dependencies = [
authlib
httpx
];
pythonImportsCheck = [ "pysenz" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/nordicopen/pysenz/releases/tag/${src.tag}";
description = "Async Typed Python package for the Chemelex (nVent) RAYCHEM SENZ RestAPI";
homepage = "https://github.com/nordicopen/pysenz";
license = lib.licenses.lgpl3Plus;
maintainers = [ lib.maintainers.dotlambda ];
};
}
|