1{ stdenv
2, buildPythonPackage
3, fetchPypi
4,
5}:
6
7buildPythonPackage rec {
8 pname = "pycountry";
9 version = "19.8.18";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "1jxkdjffrhn0il0nm14dlzxpd6f3v1hbxzxsprcksafgmm0almrw";
14 };
15
16 meta = with stdenv.lib; {
17 homepage = https://bitbucket.org/flyingcircus/pycountry;
18 description = "ISO country, subdivision, language, currency and script definitions and their translations";
19 license = licenses.lgpl2;
20 };
21
22}