Merge pull request #133302 from fabaff/bump-mutesync

python3Packages.mutesync: 0.0.1 -> 0.0.2

authored by

Fabian Affolter and committed by
GitHub
8c28f4fe 7388cb56

+3 -12
+3 -12
pkgs/development/python-modules/mutesync/default.nix
··· 2 2 , aiohttp 3 3 , async-timeout 4 4 , buildPythonPackage 5 - , fetchpatch 6 5 , fetchPypi 7 6 }: 8 7 9 8 buildPythonPackage rec { 10 9 pname = "mutesync"; 11 - version = "0.0.1"; 10 + version = "0.0.2"; 12 11 13 12 src = fetchPypi { 14 13 inherit pname version; 15 - sha256 = "05r8maq59glwgysg98y1vrysfb1mkh9jpbag3ixl13n8jw8clp85"; 14 + sha256 = "1lz3q3q9lw8qxxb8jyrak77v6hkxwi39akyx96j8hd5jjaq2k5qc"; 16 15 }; 17 16 18 17 propagatedBuildInputs = [ ··· 20 19 async-timeout 21 20 ]; 22 21 23 - patches = [ 24 - # Don't parse requirements.txt, https://github.com/currentoor/pymutesync/pull/1 25 - (fetchpatch { 26 - name = "add-requirements.patch"; 27 - url = "https://github.com/currentoor/pymutesync/commit/d66910fc83b1ae3060cdb3fe22a6f91fb70a67f0.patch"; 28 - sha256 = "0axhgriyyv31b1r1yidxcrv0nyrqbb63xw5qrmv2iy2h0v96ijsk"; 29 - }) 30 - ]; 31 - 32 22 # Project has not published tests yet 33 23 doCheck = false; 24 + 34 25 pythonImportsCheck = [ "mutesync" ]; 35 26 36 27 meta = with lib; {