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