Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / iso-639 / default.nix
blob22d66ef9f14f04da415a3f59502a09f8f2658dd3
1 { lib, fetchPypi, buildPythonPackage, setuptools }:
3 buildPythonPackage rec {
4   pname = "iso-639";
5   version = "0.4.5";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "dc9cd4b880b898d774c47fe9775167404af8a85dd889d58f9008035109acce49";
11   };
13   propagatedBuildInputs = [ setuptools ];
15   meta = with lib; {
16     homepage = "https://github.com/noumar/iso639";
17     description = "ISO 639 library for Python";
18     license = licenses.agpl3Only;
19     maintainers = with maintainers; [ zraexy ];
20   };