3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/ukpostcodeparser/default.nix

23 lines
572 B
Nix
Raw Normal View History

2017-07-04 00:31:49 +01:00
{ stdenv, lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "UkPostcodeParser";
2017-07-28 15:49:08 +01:00
version = "1.1.1";
2017-07-04 00:31:49 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-07-28 15:49:08 +01:00
sha256 = "b7a7ac19d48897637c7aaa2f2970288f1c260e4a99140bf04c6086cf65576c6b";
2017-07-04 00:31:49 +01:00
};
doCheck = false;
meta = with lib; {
description = "UK Postcode parser";
homepage = https://github.com/hamstah/ukpostcodeparser;
license = licenses.publicDomain;
maintainers = with maintainers; [ siddharthist ];
platforms = platforms.unix;
};
}