depot/third_party/nixpkgs/pkgs/development/python-modules/iso-639/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

21 lines
528 B
Nix

{ lib, fetchPypi, buildPythonPackage, setuptools }:
buildPythonPackage rec {
pname = "iso-639";
version = "0.4.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "dc9cd4b880b898d774c47fe9775167404af8a85dd889d58f9008035109acce49";
};
propagatedBuildInputs = [ setuptools ];
meta = with lib; {
homepage = "https://github.com/noumar/iso639";
description = "ISO 639 library for Python";
license = licenses.agpl3;
maintainers = with maintainers; [ zraexy ];
};
}