summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2020-07-06 13:28:01 -0400
committerGitHub <noreply@github.com>2020-07-06 13:28:01 -0400
commitdeb6137ff201095a47b2dbe089600165bce9f9de (patch)
tree5e7c3b87072aa52b7402d786153ad9d52aeb5c7d /pkgs/top-level
parented720586580914a64c6175c98d0ea7d0f674d9fb (diff)
parent19f7be374bfb77ad792eef68d750a42e3af3a3d8 (diff)
downloadnixpkgs-deb6137ff201095a47b2dbe089600165bce9f9de.tar
nixpkgs-deb6137ff201095a47b2dbe089600165bce9f9de.tar.gz
nixpkgs-deb6137ff201095a47b2dbe089600165bce9f9de.tar.bz2
nixpkgs-deb6137ff201095a47b2dbe089600165bce9f9de.tar.lz
nixpkgs-deb6137ff201095a47b2dbe089600165bce9f9de.tar.xz
nixpkgs-deb6137ff201095a47b2dbe089600165bce9f9de.tar.zst
nixpkgs-deb6137ff201095a47b2dbe089600165bce9f9de.zip
Merge pull request #92455 from stigtsp/package/perl-metacpan-client-init
perlPackages.MetaCPANClient: init at 2.026000
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/perl-packages.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 6520ee88a61..646d5ca0777 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -11685,6 +11685,31 @@ let
     };
   };
 
+  MetaCPANClient = buildPerlPackage {
+    pname = "MetaCPAN-Client";
+    version = "2.026000";
+    src = fetchurl {
+      url = "mirror://cpan/authors/id/M/MI/MICKEY/MetaCPAN-Client-2.026000.tar.gz";
+      sha256 = "ee711619d59655dac1bd2e4b894ffeb3171bd73b1ed38ba4b7b07d3690f94465";
+    };
+
+    # Most tests are online, so we only include offline tests
+    postPatch = ''
+      substituteInPlace Makefile.PL \
+         --replace '"t/*.t t/api/*.t"' \
+        '"t/00-report-prereqs.t t/api/_get.t t/api/_get_or_search.t t/api/_search.t t/entity.t t/request.t t/resultset.t"'
+    '';
+
+    buildInputs = [ LWPProtocolhttps TestFatal TestNeeds ];
+    propagatedBuildInputs = [ IOSocketSSL JSONMaybeXS Moo NetSSLeay RefUtil SafeIsa TypeTiny URI ];
+    meta = {
+      homepage = "https://github.com/metacpan/metacpan-client";
+      description = "A comprehensive, DWIM-featured client to the MetaCPAN API";
+      license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+      maintainers = with maintainers; [ sgo ];
+    };
+  };
+
   MethodSignaturesSimple = buildPerlPackage {
     pname = "Method-Signatures-Simple";
     version = "1.07";