nixpkgs/pkgs/development/python-modules/ukpostcodeparser/default.nix

22 lines
534 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
2017-07-03 23:31:49 +00:00
buildPythonPackage rec {
pname = "UkPostcodeParser";
2017-10-25 18:04:35 +00:00
version = "1.1.2";
2017-07-03 23:31:49 +00:00
src = fetchPypi {
inherit pname version;
2017-10-25 18:04:35 +00:00
sha256 = "930264efa293db80af0103a4fe9c161b06365598d24bb6fe5403f3f57c70530e";
2017-07-03 23:31:49 +00:00
};
doCheck = false;
meta = with lib; {
description = "UK Postcode parser";
homepage = "https://github.com/hamstah/ukpostcodeparser";
2017-07-03 23:31:49 +00:00
license = licenses.publicDomain;
maintainers = with maintainers; [ siddharthist ];
platforms = platforms.unix;
};
}