4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
37 lines
821 B
Nix
37 lines
821 B
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, nose
|
|
, mock
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "simplebayes";
|
|
version = "1.5.8";
|
|
|
|
# Use GitHub instead of pypi, because it contains tests.
|
|
src = fetchFromGitHub {
|
|
repo = "simplebayes";
|
|
owner = "hickeroar";
|
|
# NOTE: This is actually 1.5.8 but the tag is wrong!
|
|
rev = "1.5.7";
|
|
sha256 = "0mp7rvfdmpfxnka4czw3lv5kkh6gdxh6dm4r6hcln1zzfg9lxp4h";
|
|
};
|
|
|
|
checkInputs = [ nose mock ];
|
|
|
|
postPatch = stdenv.lib.optionalString isPy3k ''
|
|
sed -i -e 's/open *(\([^)]*\))/open(\1, encoding="utf-8")/' setup.py
|
|
'';
|
|
|
|
checkPhase = "nosetests tests/test.py";
|
|
|
|
meta = with lib; {
|
|
description = "Memory-based naive bayesian text classifier";
|
|
homepage = "https://github.com/hickeroar/simplebayes";
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|