depot/third_party/nixpkgs/pkgs/development/python-modules/python-crfsuite/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

37 lines
707 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonAtLeast
}:
buildPythonPackage rec {
pname = "python-crfsuite";
version = "0.9.9";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-yqYmHWlVRmdW+Ya3/PvU/VBiKWPjvbXMGAwSnGKzp20=";
};
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;
};
}