summary refs log tree commit diff
path: root/pkgs/development/python-modules/iso-639/default.nix
blob: f44bb7caf3d5d99394ee220cc3ad2a9765e695fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, buildPythonPackage }:

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "iso-639";
  version = "0.4.5";

  src = fetchurl {
    url = "mirror://pypi/i/${pname}/${name}.tar.gz";
    sha256 = "dc9cd4b880b898d774c47fe9775167404af8a85dd889d58f9008035109acce49";
  };

  meta = with stdenv.lib; {
    homepage = https://github.com/noumar/iso639;
    description = "ISO 639 library for Python";
    license = licenses.agpl3;
    maintainers = with maintainers; [ zraexy ];
  };
}