1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/python-modules/ukpostcodeparser/default.nix

23 lines
572 B
Nix
Raw Normal View History

2017-07-03 19:31:49 -04:00
{ stdenv, lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "UkPostcodeParser";
2017-07-28 10:49:08 -04:00
version = "1.1.1";
2017-07-03 19:31:49 -04:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-07-28 10:49:08 -04:00
sha256 = "b7a7ac19d48897637c7aaa2f2970288f1c260e4a99140bf04c6086cf65576c6b";
2017-07-03 19:31:49 -04: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;
};
}