blob: 59b3ff668ef20b2b516eb9e138710e568b4db314 (
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
|
{
lib,
aiohttp,
async-timeout,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "mutesync";
version = "0.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1lz3q3q9lw8qxxb8jyrak77v6hkxwi39akyx96j8hd5jjaq2k5qc";
};
propagatedBuildInputs = [
aiohttp
async-timeout
];
# Project has not published tests yet
doCheck = false;
pythonImportsCheck = [ "mutesync" ];
meta = {
description = "Python module for interacting with mutesync buttons";
homepage = "https://github.com/currentoor/pymutesync";
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ fab ];
};
}
|