svtplay-dl: 3.7 -> 3.9.1

+5 -4
+5 -4
pkgs/tools/misc/svtplay-dl/default.nix
··· 4 let 5 6 inherit (python3Packages) 7 - python nose cryptography pyyaml requests mock python-dateutil setuptools; 8 9 in stdenv.mkDerivation rec { 10 pname = "svtplay-dl"; 11 - version = "3.7"; 12 13 src = fetchFromGitHub { 14 owner = "spaam"; 15 repo = "svtplay-dl"; 16 rev = version; 17 - sha256 = "0krskxbmlglkipqzjwgm2nmq118m8l0djgh0f8l6n2w3bjblhyfx"; 18 }; 19 20 pythonPaths = [ cryptography pyyaml requests ]; 21 - buildInputs = [ python perl nose mock python-dateutil setuptools ] ++ pythonPaths; 22 nativeBuildInputs = [ gitMinimal zip makeWrapper ]; 23 24 postPatch = '' 25 substituteInPlace scripts/run-tests.sh \
··· 4 let 5 6 inherit (python3Packages) 7 + python pytest nose cryptography pyyaml requests mock python-dateutil setuptools; 8 9 in stdenv.mkDerivation rec { 10 pname = "svtplay-dl"; 11 + version = "3.9.1"; 12 13 src = fetchFromGitHub { 14 owner = "spaam"; 15 repo = "svtplay-dl"; 16 rev = version; 17 + sha256 = "0b207l3dnkpixjhxzis77cfhwd5mjiwrmj8cngxpx2wl1i83xw54"; 18 }; 19 20 pythonPaths = [ cryptography pyyaml requests ]; 21 + buildInputs = [ python perl mock python-dateutil setuptools ] ++ pythonPaths; 22 nativeBuildInputs = [ gitMinimal zip makeWrapper ]; 23 + checkInputs = [ nose pytest ]; 24 25 postPatch = '' 26 substituteInPlace scripts/run-tests.sh \