graphene-hardened-malloc: 2024123000 -> 2025012700 (#378307)
[NixPkgs.git] / pkgs / development / python-modules / iso-639 / default.nix
bloba971722a4194fcbef2721341ec5ee501bc4d04c3
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "iso-639";
10   version = "0.4.5";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "dc9cd4b880b898d774c47fe9775167404af8a85dd889d58f9008035109acce49";
16   };
18   propagatedBuildInputs = [ setuptools ];
20   meta = with lib; {
21     homepage = "https://github.com/noumar/iso639";
22     description = "ISO 639 library for Python";
23     license = licenses.agpl3Only;
24     maintainers = with maintainers; [ zraexy ];
25   };