Merge pull request #297012 from Stunkymonkey/python-ukpostcodeparser-normalize

This commit is contained in:
Sandro 2024-03-22 11:54:31 +01:00 committed by GitHub
commit 1b7cac3525
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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";
};