python312Packages.ukpostcodeparser: normalize pname

This commit is contained in:
Felix Buehler 2024-03-18 21:50:07 +01:00
parent 3b68d95fc7
commit 5007c8b574
1 changed files with 3 additions and 2 deletions

View File

@ -1,11 +1,12 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "UkPostcodeParser";
pname = "ukpostcodeparser";
version = "1.1.2";
src = fetchPypi {
inherit pname version;
pname = "UkPostcodeParser";
inherit version;
sha256 = "930264efa293db80af0103a4fe9c161b06365598d24bb6fe5403f3f57c70530e";
};