translitcodec: init at 0.7.0
This commit is contained in:
parent
c01abe7322
commit
30f005eda8
30
pkgs/development/python-modules/translitcodec/default.nix
Normal file
30
pkgs/development/python-modules/translitcodec/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, pythonOlder }:
|
||||||
|
|
||||||
|
let
|
||||||
|
pname = "translitcodec";
|
||||||
|
version = "0.7.0";
|
||||||
|
in buildPythonPackage {
|
||||||
|
inherit pname version;
|
||||||
|
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "claudep";
|
||||||
|
repo = pname;
|
||||||
|
rev = "version-${version}";
|
||||||
|
hash = "sha256-/EKquTchx9i3fZqJ6AMzHYP9yCORvwbuUQ95WJQOQbI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ pname ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Unicode to 8-bit charset transliteration codec";
|
||||||
|
homepage = "https://github.com/claudep/translitcodec";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ rycee ];
|
||||||
|
};
|
||||||
|
}
|
@ -14457,6 +14457,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
translationstring = callPackage ../development/python-modules/translationstring { };
|
translationstring = callPackage ../development/python-modules/translationstring { };
|
||||||
|
|
||||||
|
translitcodec = callPackage ../development/python-modules/translitcodec { };
|
||||||
|
|
||||||
transmission-rpc = callPackage ../development/python-modules/transmission-rpc { };
|
transmission-rpc = callPackage ../development/python-modules/transmission-rpc { };
|
||||||
|
|
||||||
transmissionrpc = callPackage ../development/python-modules/transmissionrpc { };
|
transmissionrpc = callPackage ../development/python-modules/transmissionrpc { };
|
||||||
|
Loading…
Reference in New Issue
Block a user