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