fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
26 lines
558 B
Nix
26 lines
558 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ukpostcodeparser";
|
|
version = "1.1.2";
|
|
|
|
src = fetchPypi {
|
|
pname = "UkPostcodeParser";
|
|
inherit version;
|
|
sha256 = "930264efa293db80af0103a4fe9c161b06365598d24bb6fe5403f3f57c70530e";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "UK Postcode parser";
|
|
homepage = "https://github.com/hamstah/ukpostcodeparser";
|
|
license = licenses.publicDomain;
|
|
maintainers = with maintainers; [ siddharthist ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|