Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5f333459d7b6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b585bba65cec
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Aug 9, 2019

  1. pythonPackage.xapian: init at 1.4.12

    Jonathan Ringer committed Aug 9, 2019
    Copy the full SHA
    f07fd4b View commit details

Commits on Aug 24, 2019

  1. Merge pull request #66356 from jonringer/add-python-xapian

    pythonPackage.xapian: init at 1.4.12
    mmahut authored Aug 24, 2019
    Copy the full SHA
    b585bba View commit details
Showing with 45 additions and 0 deletions.
  1. +43 −0 pkgs/development/python-modules/xapian/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
43 changes: 43 additions & 0 deletions pkgs/development/python-modules/xapian/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{ lib, buildPythonPackage, fetchurl, python
, sphinx
, xapian
}:

let
pythonSuffix = lib.optionalString python.isPy3k "3";
in
buildPythonPackage rec {
pname = "xapian";
inherit (xapian) version;
format = "other";

src = fetchurl {
url = "https://oligarchy.co.uk/xapian/${version}/xapian-bindings-${version}.tar.xz";
sha256 = "0j9awiiw9zf97r60m848absq43k37gghpyw7acxqjazfzd71fxvm";
};

configureFlags = [
"--with-python${pythonSuffix}"
"PYTHON${pythonSuffix}_LIB=${placeholder "out"}/${python.sitePackages}"
];

preConfigure = ''
export XAPIAN_CONFIG=${xapian}/bin/xapian-config
'';

buildInputs = [ sphinx xapian ];

doCheck = true;

checkPhase = ''
${python.interpreter} python${pythonSuffix}/smoketest.py
${python.interpreter} python${pythonSuffix}/pythontest.py
'';

meta = with lib; {
description = "Python Bindings for Xapian";
homepage = https://xapian.org/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ jonringer ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -5051,6 +5051,8 @@ in {

xarray = callPackage ../development/python-modules/xarray { };

xapian = callPackage ../development/python-modules/xapian { xapian = pkgs.xapian; };

xlwt = callPackage ../development/python-modules/xlwt { };

xxhash = callPackage ../development/python-modules/xxhash { };