1{
2 lib,
3 aiohttp,
4 async-timeout,
5 buildPythonPackage,
6 fetchPypi,
7}:
8
9buildPythonPackage rec {
10 pname = "mutesync";
11 version = "0.0.2";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "1lz3q3q9lw8qxxb8jyrak77v6hkxwi39akyx96j8hd5jjaq2k5qc";
17 };
18
19 propagatedBuildInputs = [
20 aiohttp
21 async-timeout
22 ];
23
24 # Project has not published tests yet
25 doCheck = false;
26
27 pythonImportsCheck = [ "mutesync" ];
28
29 meta = with lib; {
30 description = "Python module for interacting with mutesync buttons";
31 homepage = "https://github.com/currentoor/pymutesync";
32 license = with licenses; [ asl20 ];
33 maintainers = with maintainers; [ fab ];
34 };
35}