slint-lsp: 1.9.1 -> 1.9.2 (#375714)
[NixPkgs.git] / pkgs / development / python-modules / ukpostcodeparser / default.nix
blob611e21ed8ada2177d9d189c987ccbe1e03b40f51
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "ukpostcodeparser";
9   version = "1.1.2";
11   src = fetchPypi {
12     pname = "UkPostcodeParser";
13     inherit version;
14     sha256 = "930264efa293db80af0103a4fe9c161b06365598d24bb6fe5403f3f57c70530e";
15   };
17   doCheck = false;
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   };