Skip to content

Commit

Permalink
Merge branch 'bump-rolling' into bump-rolling
Browse files Browse the repository at this point in the history
  • Loading branch information
k3yss authored Jun 24, 2024
2 parents 9693852 + 285676e commit 9eda71f
Show file tree
Hide file tree
Showing 4 changed files with 101 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/development/python-modules/deepdiff/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ buildPythonPackage rec {

disabled = pythonOlder "3.7";

doCheck = false;

src = fetchFromGitHub {
owner = "seperman";
repo = "deepdiff";
Expand Down
10 changes: 10 additions & 0 deletions pkgs/development/python-modules/dnspython/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,21 @@ buildPythonPackage rec {

nativeCheckInputs = [ pytestCheckHook ];

<<<<<<< bump-rolling
checkInputs = [ cacert ] ++ passthru.optional-dependencies.DNSSEC;
=======
doCheck = false;

checkInputs = [
cacert
] ++ passthru.optional-dependencies.DNSSEC;
>>>>>>> bump-rolling

disabledTests = [
# dns.exception.SyntaxError: protocol not found
"test_misc_good_WKS_text"
# https://github.com/NixOS/nixpkgs/pull/289916#issuecomment-2001972844
"test_basic_getaddrinfo"
];

pythonImportsCheck = [ "dns" ];
Expand Down
68 changes: 68 additions & 0 deletions pkgs/servers/search/meilisearch/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions pkgs/servers/search/meilisearch/default.nix
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<<<<<<< bump-rolling
{
stdenv,
lib,
Expand All @@ -11,6 +12,20 @@

let
version = "1.8.3";
=======
{ stdenv
, lib
, rustPlatform
, fetchFromGitHub
, Security
, SystemConfiguration
, nixosTests
, nix-update-script
, libclang
}:

let version = "1.7.6";
>>>>>>> bump-rolling
in
rustPlatform.buildRustPackage {
pname = "meilisearch";
Expand All @@ -20,7 +35,11 @@ rustPlatform.buildRustPackage {
owner = "meilisearch";
repo = "MeiliSearch";
rev = "refs/tags/v${version}";
<<<<<<< bump-rolling
hash = "sha256-R074dn9kWxHf5loq/K4aLWvrJwpt7YAigNU0YHc0mRg=";
=======
hash = "sha256-LsJM7zkoiu5LZb/rhnZaAS/wVNH8b6YZ+vNEE1wVIIk=";
>>>>>>> bump-rolling
};

cargoBuildFlags = [ "--package=meilisearch" ];
Expand All @@ -44,6 +63,8 @@ rustPlatform.buildRustPackage {
SystemConfiguration
];

env.LIBCLANG_PATH = "${libclang.lib}/lib";

passthru = {
updateScript = nix-update-script { };
tests = {
Expand Down

0 comments on commit 9eda71f

Please sign in to comment.