11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.8";
18 src = fetchFromGitHub {
21 rev = "refs/tags/${version}";
22 hash = "sha256-5wE8FjLFu1oQkVqnWsbp253dsQ1/QGWC6hHSIFwLajY=";
26 # Upstream is releasing with the help of a CI to PyPI, GitHub releases
27 # are not in their focus
28 substituteInPlace setup.py \
29 --replace 'version="main",' 'version="${version}",'
32 propagatedBuildInputs = [
49 pythonImportsCheck = [
54 description = "Python module to get information from Tautulli";
55 homepage = "https://github.com/ludeeus/pytautulli";
56 changelog = "https://github.com/ludeeus/pytautulli/releases/tag/${version}";
57 license = with licenses; [ mit ];
58 maintainers = with maintainers; [ fab ];