blob: b574717c0ece6e34fdff9db9de1480abf65b87aa (
plain) (
blame)
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
, 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 = with lib; {
description = "Python module for interacting with mutesync buttons";
homepage = "https://github.com/currentoor/pymutesync";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}
|