Unverified Commit 5b5a68c2 authored by Stig's avatar Stig Committed by GitHub
Browse files

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

perlPackages.Connector: 1.35 -> 1.47, fix test
parents 5690c427 d834d538
Loading
Loading
Loading
Loading
+9 −5
Original line number Diff line number Diff line
@@ -4273,19 +4273,23 @@ with self; {
    };
  };
  Connector = buildPerlPackage {
  Connector = buildPerlModule {
    pname = "Connector";
    version = "1.35";
    version = "1.47";
    src = fetchurl {
      url = "mirror://cpan/authors/id/M/MR/MRSCOTTY/Connector-1.35.tar.gz";
      hash = "sha256-Qdl2bubNdaGcFsdeuQ3GT9/dXbp22NIJdo37FeVm3Eo=";
      url = "mirror://cpan/authors/id/M/MR/MRSCOTTY/Connector-1.47.tar.gz";
      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 ];
    prePatch = ''
      # Attempts to use network.
      rm t/01-proxy-http.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 = {
      description = "A generic connection to a hierarchical-structured data set";