nixpkgs/pkgs/development/python-modules/ipadic/default.nix
Martin Weinelt 8056f9250c
treewide: remove redundant SETUPTOOLS_SCM_PRETEND_VERSION usage
The setuptools-scm packages gained a setup hook, that sets it to the
derivation version automatically, so setting it to that manually has
become redundant.

This also affects downstream consumers of setuptools-scm, like hatch-vcs
or flit-scm.
2023-12-20 20:16:39 +01:00

37 lines
749 B
Nix

{ 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;
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 ];
};
}