stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / python-crfsuite / default.nix
blobae56a4e20418c0d6db178481485b5f137485b3e2
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   cython,
7 }:
9 buildPythonPackage rec {
10   pname = "python-crfsuite";
11   version = "0.9.11";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit version;
16     pname = "python_crfsuite";
17     hash = "sha256-bv+WXKcFZzltgiyaNep0sPftsn2UcVJJl72r56baX1o=";
18   };
20   preCheck = ''
21     # make sure import the built version, not the source one
22     rm -r pycrfsuite
23   '';
25   build-system = [
26     cython
27   ];
29   nativeCheckInputs = [ pytestCheckHook ];
31   pythonImportsCheck = [ "pycrfsuite" ];
33   meta = with lib; {
34     description = "Python binding for CRFsuite";
35     homepage = "https://github.com/scrapinghub/python-crfsuite";
36     license = licenses.mit;
37     maintainers = teams.tts.members;
38   };