mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
34 lines
607 B
Nix
34 lines
607 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, marisa
|
|
, swig
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "marisa";
|
|
format = "setuptools";
|
|
inherit (marisa) src version;
|
|
|
|
nativeBuildInputs = [ swig ];
|
|
|
|
buildInputs = [ marisa ];
|
|
|
|
preBuild = ''
|
|
make -C bindings swig-python
|
|
|
|
cd bindings/python
|
|
'';
|
|
|
|
# upstream has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "marisa" ];
|
|
|
|
meta = {
|
|
description = "Python bindings for marisa";
|
|
homepage = "https://github.com/s-yata/marisa-trie";
|
|
license = with lib.licenses; [ bsd2 lgpl21Plus ];
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|