python3Packages.pymazda: fix build

The pycryptodome dependency was replaced by cryptography. Sadly the git
repository is out of date.
This commit is contained in:
Martin Weinelt 2021-03-27 01:32:18 +01:00 committed by Frederik Rietdijk
parent b7ce919853
commit e7436d2c9f

View File

@ -2,7 +2,7 @@
, aiohttp , aiohttp
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pycryptodome , cryptography
, pythonOlder , pythonOlder
}: }:
@ -16,7 +16,10 @@ buildPythonPackage rec {
sha256 = "174c58e6e78081af3105524074ae26e62be683389e495ab85a30e2adbf7ba365"; sha256 = "174c58e6e78081af3105524074ae26e62be683389e495ab85a30e2adbf7ba365";
}; };
propagatedBuildInputs = [ aiohttp pycryptodome ]; propagatedBuildInputs = [
aiohttp
cryptography
];
# Project has no tests # Project has no tests
doCheck = false; doCheck = false;