Merge pull request #118351 from gebner/uranium-cryptography

python3Packages.uranium: add missing cryptography dependency
This commit is contained in:
Sandro 2021-04-02 21:56:04 +02:00 committed by GitHub
commit 021df8feed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchFromGitHub, python, cmake
, pyqt5, numpy, scipy, shapely, libarcus, doxygen, gettext, pythonOlder }:
, pyqt5, numpy, scipy, shapely, libarcus, cryptography, doxygen, gettext, pythonOlder }:
buildPythonPackage rec {
version = "4.7.1";
@ -16,7 +16,7 @@ buildPythonPackage rec {
disabled = pythonOlder "3.5.0";
buildInputs = [ python gettext ];
propagatedBuildInputs = [ pyqt5 numpy scipy shapely libarcus ];
propagatedBuildInputs = [ pyqt5 numpy scipy shapely libarcus cryptography ];
nativeBuildInputs = [ cmake doxygen ];
postPatch = ''