a5adf1ddd8
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
22 lines
480 B
Nix
22 lines
480 B
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pycountry";
|
|
version = "20.7.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0hnbabsmqimx5hqh0jbd2f64i8fhzhhbrvid57048hs5sd9ll241";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://bitbucket.org/flyingcircus/pycountry";
|
|
description = "ISO country, subdivision, language, currency and script definitions and their translations";
|
|
license = licenses.lgpl2;
|
|
};
|
|
|
|
}
|