depot/third_party/nixpkgs/pkgs/development/python-modules/python-crfsuite/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

33 lines
686 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "python-crfsuite";
version = "0.9.10";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-84UkYx4rUzNB8Q8sd2iScNxuzVmFSV3M96o3sQRbwuU=";
};
preCheck = ''
# make sure import the built version, not the source one
rm -r pycrfsuite
'';
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pycrfsuite" ];
meta = with lib; {
description = "Python binding for CRFsuite";
homepage = "https://github.com/scrapinghub/python-crfsuite";
license = licenses.mit;
maintainers = teams.tts.members;
};
}