python39Packages.pyopenssl: cleanup dependencies

This commit is contained in:
Sandro Jäckel 2022-03-23 09:00:53 +01:00
parent 85a633de9f
commit a923e194a3
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -4,13 +4,9 @@
, fetchPypi , fetchPypi
, openssl , openssl
, cryptography , cryptography
, pyasn1
, idna
, pytestCheckHook , pytestCheckHook
, pretend , pretend
, flaky , flaky
, glibcLocales
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -30,9 +26,9 @@ buildPythonPackage rec {
doCheck = !stdenv.isDarwin; doCheck = !stdenv.isDarwin;
nativeBuildInputs = [ openssl ]; nativeBuildInputs = [ openssl ];
propagatedBuildInputs = [ cryptography pyasn1 idna six ]; propagatedBuildInputs = [ cryptography ];
checkInputs = [ pytestCheckHook pretend flaky glibcLocales ]; checkInputs = [ pytestCheckHook pretend flaky ];
preCheck = '' preCheck = ''
export LANG="en_US.UTF-8" export LANG="en_US.UTF-8"