nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.pytautulli: 21.10.1 -> 21.11.0

+5 -5
+5 -5
pkgs/development/python-modules/pytautulli/default.nix
··· 1 1 { lib 2 2 , aiohttp 3 3 , aresponses 4 - , async-timeout 5 4 , buildPythonPackage 6 5 , fetchFromGitHub 7 6 , pytest-asyncio ··· 10 11 11 12 buildPythonPackage rec { 12 13 pname = "pytautulli"; 13 - version = "21.10.1"; 14 + version = "21.11.0"; 14 15 format = "setuptools"; 15 16 16 17 disabled = pythonOlder "3.8"; ··· 19 20 owner = "ludeeus"; 20 21 repo = pname; 21 22 rev = version; 22 - sha256 = "sha256-ckDqKPseOrGyWGvcPyj99cvQS+w4AHUkO4FHOIo9MDM="; 23 + sha256 = "sha256-zODU3aN+8Fdw/GQ/EfZhn6kOuLDARKgLULzRw2+b2BM="; 23 24 }; 24 25 25 26 postPatch = '' ··· 31 32 32 33 propagatedBuildInputs = [ 33 34 aiohttp 34 - async-timeout 35 35 ]; 36 36 37 37 checkInputs = [ ··· 39 41 pytestCheckHook 40 42 ]; 41 43 42 - pythonImportsCheck = [ "pytautulli" ]; 44 + pythonImportsCheck = [ 45 + "pytautulli" 46 + ]; 43 47 44 48 meta = with lib; { 45 49 description = "Python module to get information from Tautulli";