ukpostcodeparser: init at 1.1.0
This commit is contained in:
parent
d2c0a46797
commit
822b09a514
22
pkgs/development/python-modules/ukpostcodeparser/default.nix
Normal file
22
pkgs/development/python-modules/ukpostcodeparser/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, lib, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "UkPostcodeParser";
|
||||||
|
version = "1.1.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1v8k91xhg5fr6sk91am93abjarw950ray7b9q3w5j25agjsxgcsf";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -24018,6 +24018,8 @@ in {
|
|||||||
|
|
||||||
u-msgpack-python = callPackage ../development/python-modules/u-msgpack-python { };
|
u-msgpack-python = callPackage ../development/python-modules/u-msgpack-python { };
|
||||||
|
|
||||||
|
ukpostcodeparser = callPackage ../development/python-modules/ukpostcodeparser { };
|
||||||
|
|
||||||
umalqurra = buildPythonPackage rec {
|
umalqurra = buildPythonPackage rec {
|
||||||
name = "umalqurra-${version}";
|
name = "umalqurra-${version}";
|
||||||
version = "0.2";
|
version = "0.2";
|
||||||
|
Loading…
Reference in New Issue
Block a user