1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "UkPostcodeParser";
5 version = "1.1.2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "930264efa293db80af0103a4fe9c161b06365598d24bb6fe5403f3f57c70530e";
10 };
11
12 doCheck = false;
13
14 meta = with lib; {
15 description = "UK Postcode parser";
16 homepage = "https://github.com/hamstah/ukpostcodeparser";
17 license = licenses.publicDomain;
18 maintainers = with maintainers; [ siddharthist ];
19 platforms = platforms.unix;
20 };
21}