Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / isounidecode / default.nix
blob70736a54a1fe6dd8f53ecb759c1d310f6a554a4f
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "isounidecode";
5   version = "0.3";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-TbCpYsY0GCbJpprKq8L5I6WxJNU6M1voku8pFzvDHFs=";
11   };
13   pythonImportsCheck = [ "isounidecode" ];
15   # no real tests included, fails to run
16   doCheck = false;
18   meta = with lib; {
19     description = "Python package for conversion and transliteration of unicode into ascii or iso-8859-1";
20     homepage = "https://github.com/redvasily/isounidecode";
21     license = licenses.bsd3;
22     maintainers = with maintainers; [ ];
23   };