mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
python3Packages.ipadic: init at 1.0.0
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: OTABI Tomoya <contact@natsukium.com>
This commit is contained in:
parent
89fac5de50
commit
3f41c7d4df
38
pkgs/development/python-modules/ipadic/default.nix
Normal file
38
pkgs/development/python-modules/ipadic/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, mecab
|
||||
, setuptools-scm
|
||||
, cython
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ipadic";
|
||||
version = "1.0.0";
|
||||
format = "setuptools";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "polm";
|
||||
repo = "ipadic-py";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-ybC8G1AOIZWkS3uQSErXctIJKq9Y7xBjRbBrO8/yAj4=";
|
||||
};
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||
|
||||
nativeBuildInputs = [ cython mecab setuptools-scm ];
|
||||
|
||||
pythonImportsCheck = [ "ipadic" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Contemporary Written Japanese dictionary";
|
||||
homepage = "https://github.com/polm/ipadic-py";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ laurent-f1z1 ];
|
||||
};
|
||||
}
|
@ -4976,6 +4976,8 @@ self: super: with self; {
|
||||
|
||||
iowait = callPackage ../development/python-modules/iowait { };
|
||||
|
||||
ipadic = callPackage ../development/python-modules/ipadic { };
|
||||
|
||||
ipaddr = callPackage ../development/python-modules/ipaddr { };
|
||||
|
||||
ipdb = callPackage ../development/python-modules/ipdb { };
|
||||
|
Loading…
Reference in New Issue
Block a user