svtplay-dl: Update crypto dependency

This commit is contained in:
Jesper Geertsen Jonsson 2021-04-05 17:59:58 +02:00
parent 59e7ddef8a
commit 830609e206

View file

@ -4,7 +4,7 @@
let
inherit (python3Packages)
python nose pycrypto pyyaml requests mock python-dateutil setuptools;
python nose cryptography pyyaml requests mock python-dateutil setuptools;
in stdenv.mkDerivation rec {
pname = "svtplay-dl";
@ -17,7 +17,7 @@ in stdenv.mkDerivation rec {
sha256 = "00pz5vv39qjsw67fdlj6942371lyvv368lc82z17nnh723ck54yy";
};
pythonPaths = [ pycrypto pyyaml requests ];
pythonPaths = [ cryptography pyyaml requests ];
buildInputs = [ python perl nose mock python-dateutil setuptools ] ++ pythonPaths;
nativeBuildInputs = [ gitMinimal zip makeWrapper ];