about summary refs log tree commit diff
path: root/pkgs/development/python-modules/isounidecode/default.nix
blob: 860b237c3de54a831dcffadddb5b8f4790494292 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "isounidecode";
  version = "0.3";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-TbCpYsY0GCbJpprKq8L5I6WxJNU6M1voku8pFzvDHFs=";
  };

  pythonImportsCheck = [ "isounidecode" ];

  # no real tests included, fails to run
  doCheck = false;

  meta = with lib; {
    description = "Python package for conversion and transliteration of unicode into ascii or iso-8859-1";
    homepage = "https://github.com/redvasily/isounidecode";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
  };
}