mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
d912b0d845
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-google-i18n-address/versions
23 lines
596 B
Nix
23 lines
596 B
Nix
{ buildPythonPackage, fetchPypi, lib, requests, pytest, pytestcov, mock }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-i18n-address";
|
|
version = "2.3.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1kkg3x92m40z0mw712z9apnrw08qsx0f9lj7lfgddkdbx4vd8v3w";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
checkInputs = [ pytest pytestcov mock ];
|
|
|
|
meta = with lib; {
|
|
description = "Google's i18n address data packaged for Python";
|
|
homepage = https://pypi.org/project/google-i18n-address/;
|
|
maintainers = with maintainers; [ ma27 ];
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|