3
0
Fork 0
forked from mirrors/nixpkgs

tvnamer: add setuptools dependency to requests-cache 0.5.2

tvnamer has a direct dependency on old version of requests-cache 0.5.2.
Unfortunately, it was failing to build as it was missing setuptools.
This change adds this dependency. Along with the fixes to tvdb_api, now
tvnamer correctly builds.
This commit is contained in:
Nikola Knezevic 2023-02-15 13:55:42 +01:00 committed by Peter Hoeg
parent 06841a64aa
commit aae8cfd998

View file

@ -4,16 +4,20 @@
let
python' = python3.override {
packageOverrides = self: super: rec {
packageOverrides = final: prev: rec {
# tvdb_api v3.1.0 has a hard requirement on requests-cache < 0.6
requests-cache = super.requests-cache.overridePythonAttrs (super: rec {
requests-cache = prev.requests-cache.overridePythonAttrs (oldAttrs: rec {
version = "0.5.2";
src = self.fetchPypi {
inherit (super) pname;
src = final.fetchPypi {
inherit (oldAttrs) pname;
inherit version;
sha256 = "sha256-gTAjJpaGBF+OAeIonMHn6a5asi3dHihJqQk6s6tycOs=";
};
nativeBuildInputs = with final; [
setuptools
];
# too many changes have been made to requests-cache based on version 0.6 so
# simply disable tests
doCheck = false;