forked from mirrors/nixpkgs
pythonPackages.sqlite-fts4: init at 1.0.1
This commit is contained in:
parent
16f80f8221
commit
d6d2281f35
31
pkgs/development/python-modules/sqlite-fts4/default.nix
Normal file
31
pkgs/development/python-modules/sqlite-fts4/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, isPy3k
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sqlite-fts4";
|
||||
version = "1.0.1";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "simonw";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "15r1mijk306fpm61viry5wjhqyxlbqqdk4nfcd901qarx7vqypgy";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Custom Python functions for working with SQLite FTS4";
|
||||
homepage = "https://github.com/simonw/sqlite-fts4";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ meatcar ];
|
||||
};
|
||||
|
||||
}
|
|
@ -7030,6 +7030,7 @@ in {
|
|||
|
||||
sqlitedict = callPackage ../development/python-modules/sqlitedict { };
|
||||
|
||||
sqlite-fts4 = callPackage ../development/python-modules/sqlite-fts4 { };
|
||||
sqlite-utils = callPackage ../development/python-modules/sqlite-utils { };
|
||||
|
||||
sqlmap = callPackage ../development/python-modules/sqlmap { };
|
||||
|
|
Loading…
Reference in a new issue