Merge pull request #246984 from stigtsp/fix/perl-Connector-bump-and-crypt

perlPackages.Connector: 1.35 -> 1.47, fix test
This commit is contained in:
Stig 2023-08-26 01:49:21 +02:00 committed by GitHub
commit 5b5a68c217
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4273,19 +4273,23 @@ with self; {
}; };
}; };
Connector = buildPerlPackage { Connector = buildPerlModule {
pname = "Connector"; pname = "Connector";
version = "1.35"; version = "1.47";
src = fetchurl { src = fetchurl {
url = "mirror://cpan/authors/id/M/MR/MRSCOTTY/Connector-1.35.tar.gz"; url = "mirror://cpan/authors/id/M/MR/MRSCOTTY/Connector-1.47.tar.gz";
hash = "sha256-Qdl2bubNdaGcFsdeuQ3GT9/dXbp22NIJdo37FeVm3Eo="; hash = "sha256-I2R4pAq53cIVgu4na6krnjgbP8XtljkKLe2o4nSGeoM=";
}; };
buildInputs = [ ConfigMerge ConfigStd ConfigVersioned DBDSQLite DBI IOSocketSSL JSON LWP LWPProtocolHttps ProcSafeExec TemplateToolkit YAML ]; buildInputs = [ ModuleBuildTiny ConfigMerge ConfigStd ConfigVersioned DBDSQLite DBI IOSocketSSL JSON LWP LWPProtocolHttps ProcSafeExec TemplateToolkit YAML ];
propagatedBuildInputs = [ LogLog4perl Moose ]; propagatedBuildInputs = [ LogLog4perl Moose ];
prePatch = '' prePatch = ''
# Attempts to use network. # Attempts to use network.
rm t/01-proxy-http.t rm t/01-proxy-http.t
rm t/01-proxy-proc-safeexec.t rm t/01-proxy-proc-safeexec.t
# crypt() tests that use DES
rm t/01-builtin-password.t
rm t/01-builtin-password-scheme.t
''; '';
meta = { meta = {
description = "A generic connection to a hierarchical-structured data set"; description = "A generic connection to a hierarchical-structured data set";