forked from mirrors/nixpkgs
python3Packages.anyascii: init at 0.2.0
This commit is contained in:
parent
acf743087a
commit
841dd58a15
29
pkgs/development/python-modules/anyascii/default.nix
Normal file
29
pkgs/development/python-modules/anyascii/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "anyascii";
|
||||
version = "0.2.0";
|
||||
format = "setuptools";
|
||||
disabled = pythonOlder "3.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1b6jdd9nx15py0jqjdn154m6m491517sqlk57bbyj3x4xzywadkh";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Unicode to ASCII transliteration";
|
||||
homepage = "https://github.com/anyascii/anyascii";
|
||||
license = licenses.isc;
|
||||
maintainers = teams.tts.members;
|
||||
};
|
||||
}
|
|
@ -461,6 +461,8 @@ in {
|
|||
inherit (pkgs) antlr4;
|
||||
};
|
||||
|
||||
anyascii = callPackage ../development/python-modules/anyascii { };
|
||||
|
||||
anyio = callPackage ../development/python-modules/anyio { };
|
||||
|
||||
anyjson = callPackage ../development/python-modules/anyjson { };
|
||||
|
|
Loading…
Reference in a new issue