summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ukpostcodeparser/default.nix
blob: 9c3afe6c8917c3dc18ad85977c24153df2a9a1a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "ukpostcodeparser";
  version = "1.1.2";
  format = "setuptools";

  src = fetchPypi {
    pname = "UkPostcodeParser";
    inherit version;
    sha256 = "930264efa293db80af0103a4fe9c161b06365598d24bb6fe5403f3f57c70530e";
  };

  doCheck = false;

  meta = {
    description = "UK Postcode parser";
    homepage = "https://github.com/hamstah/ukpostcodeparser";
    license = lib.licenses.publicDomain;
    maintainers = with lib.maintainers; [ siddharthist ];
    platforms = lib.platforms.unix;
  };
}