python311Packages.qbittorrent-api: 2023.11.57 -> 2024.1.58

Changelog: https://github.com/rmartin16/qbittorrent-api/blob/v2024.1.58/CHANGELOG.md
This commit is contained in:
Mario Rodas 2024-01-17 04:20:00 +00:00
parent ff7cac1ac9
commit afd5725abc

View File

@ -2,33 +2,31 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, requests , requests
, six
, urllib3 , urllib3
, packaging , packaging
, setuptools , setuptools
, wheel , setuptools-scm
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "qbittorrent-api"; pname = "qbittorrent-api";
version = "2023.11.57"; version = "2024.1.58";
format = "pyproject"; pyproject = true;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-fmFJW4PDQc7szu0ymE+fV9k6wUDLRHkOriEHDnzDSQg="; hash = "sha256-6JyU9mr0xfRLB7AJOcnPc+PpF0EWi/R/Wy3lCKanAmA=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
requests requests
six
urllib3 urllib3
packaging packaging
]; ];
nativeBuildInputs = [ nativeBuildInputs = [
setuptools setuptools
wheel setuptools-scm
]; ];
# Tests require internet access # Tests require internet access