about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pycountry/default.nix
blob: b402e9092406bb098aa459b5560b05d0a1107028 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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;
  };

}