Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mutesync / default.nix
blobb574717c0ece6e34fdff9db9de1480abf65b87aa
1 { lib
2 , aiohttp
3 , async-timeout
4 , buildPythonPackage
5 , fetchPypi
6 }:
8 buildPythonPackage rec {
9   pname = "mutesync";
10   version = "0.0.2";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "1lz3q3q9lw8qxxb8jyrak77v6hkxwi39akyx96j8hd5jjaq2k5qc";
16   };
18   propagatedBuildInputs = [
19     aiohttp
20     async-timeout
21   ];
23   # Project has not published tests yet
24   doCheck = false;
26   pythonImportsCheck = [ "mutesync" ];
28   meta = with lib; {
29     description = "Python module for interacting with mutesync buttons";
30     homepage = "https://github.com/currentoor/pymutesync";
31     license = with licenses; [ asl20 ];
32     maintainers = with maintainers; [ fab ];
33   };