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