blob: 1a600ed76375582ce3790598ac62f89698cde839 (
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
|
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "wiffi";
version = "1.1.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "mampfes";
repo = "python-wiffi";
tag = version;
hash = "sha256-pnbzJxq8K947Yg54LysPPho6IRKf0cc+szTETgyzFao=";
};
propagatedBuildInputs = [ aiohttp ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "wiffi" ];
meta = {
description = "Python module to interface with STALL WIFFI devices";
homepage = "https://github.com/mampfes/python-wiffi";
changelog = "https://github.com/mampfes/python-wiffi/blob/${version}/HISTORY.md";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|