python3Packages.mbstrdecoder: init at 1.1.1
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
{ buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, chardet
|
||||
, pytestCheckHook
|
||||
, faker
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mbstrdecoder";
|
||||
version = "1.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "thombashi";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-U8F+mWKDulIRvvhswmdGnxKjM2qONQybViQ5TLZbLDY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ chardet ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
checkInputs = [ faker ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/thombashi/mbstrdecoder";
|
||||
description = "A library for decoding multi-byte character strings";
|
||||
maintainers = with maintainers; [ genericnerdyusername ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
@@ -5770,6 +5770,8 @@ self: super: with self; {
|
||||
|
||||
mbddns = callPackage ../development/python-modules/mbddns { };
|
||||
|
||||
mbstrdecoder = callPackage ../development/python-modules/mbstrdecoder { };
|
||||
|
||||
mccabe = callPackage ../development/python-modules/mccabe { };
|
||||
|
||||
mcstatus = callPackage ../development/python-modules/mcstatus { };
|
||||
|
||||
Reference in New Issue
Block a user