From 47bd56f10e265524273984536a0f5e249c8b0879 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Thu, 5 Jul 2018 17:42:22 +0200
Subject: [PATCH] fix(pypi): normalize name before compare

---
 lib/datasource/pypi.js | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/lib/datasource/pypi.js b/lib/datasource/pypi.js
index fee0e2b581..261eda2993 100644
--- a/lib/datasource/pypi.js
+++ b/lib/datasource/pypi.js
@@ -7,6 +7,10 @@ module.exports = {
   getDependency,
 };
 
+function normalizeName(input) {
+  return input.toLowerCase().replace('-', '_');
+}
+
 async function getDependency(purl, config = {}) {
   const { fullname: depName } = purl;
   let hostUrl = 'https://pypi.org/pypi/';
@@ -24,9 +28,11 @@ async function getDependency(purl, config = {}) {
       logger.debug({ depName }, 'pip package not found');
       return null;
     }
-    if (!(dep.info && dep.info.name.toLowerCase() === depName.toLowerCase())) {
+    if (
+      !(dep.info && normalizeName(dep.info.name) === normalizeName(depName))
+    ) {
       logger.warn(
-        { lookupName: depName, returnedName: dep.name },
+        { lookupName: depName, returnedName: dep.info.name },
         'Returned name does not match with requested name'
       );
       return null;
-- 
GitLab