2018-10-17 20:11:35 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
,
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pycountry";
|
2019-07-20 13:26:00 +01:00
|
|
|
version = "19.7.15";
|
2018-10-17 20:11:35 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-07-20 13:26:00 +01:00
|
|
|
sha256 = "15lhv18za0zv36laksr86rszjhp0slmqzcylm6ds9vpd7gyqprb8";
|
2018-10-17 20:11:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://bitbucket.org/flyingcircus/pycountry;
|
|
|
|
description = "ISO country, subdivision, language, currency and script definitions and their translations";
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|