Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / simplebayes / default.nix
blob40bc248d8a0bb1b7e2d43a1722aa1bf861faf20d
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , nose
5 , mock
6 , isPy3k
7 }:
9 buildPythonPackage {
10   pname = "simplebayes";
11   version = "1.5.8";
13   # Use GitHub instead of pypi, because it contains tests.
14   src = fetchFromGitHub {
15     repo = "simplebayes";
16     owner = "hickeroar";
17     # NOTE: This is actually 1.5.8 but the tag is wrong!
18     rev = "1.5.7";
19     sha256 = "0mp7rvfdmpfxnka4czw3lv5kkh6gdxh6dm4r6hcln1zzfg9lxp4h";
20   };
22   nativeCheckInputs = [ nose mock ];
24   postPatch = lib.optionalString isPy3k ''
25     sed -i -e 's/open *(\([^)]*\))/open(\1, encoding="utf-8")/' setup.py
26   '';
28   checkPhase = "nosetests tests/test.py";
30   meta = with lib; {
31     description = "Memory-based naive bayesian text classifier";
32     homepage = "https://github.com/hickeroar/simplebayes";
33     license = licenses.mit;
34   };