nixpkgs/pkgs/development/python-modules/python-crfsuite/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

38 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;
};
}