Skip to content

Commit

Permalink
feat(build): fluidattacks#1278 update nixpkgs
Browse files Browse the repository at this point in the history
- update nixpkgs to latest version

Signed-off-by: Robin Quintero <[email protected]>
  • Loading branch information
rohaquinlop committed Jan 23, 2024
1 parent a55df48 commit 3d3ca83
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,21 @@
makesLib = makes_inputs;
inherit nixpkgs python_version src;
};
more-itertools = python_pkgs.more-itertools.overrideAttrs (oldAttrs: rec {
version = "9.1.0";
src = lib.fetchPypi {
pname = "more-itertools";
inherit version;
sha256 = "sha256-yrqjQa0DieqDwXqUVmpTrkydBzSYYeyxTcbQNFz5rF0=";
};
});
in
bundle.build_bundle (
default: required_deps: builder:
builder lib (
required_deps (
python_pkgs
// {inherit more-itertools;}
// {
inherit (default.python_pkgs) types-simplejson;
}
Expand Down
5 changes: 2 additions & 3 deletions src/args/compute-on-aws-batch/batch-client/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
[project]
name = "batch_client"
authors = [
{name = "Product Team", email = "[email protected]"},
]
authors = [{ name = "Product Team", email = "[email protected]" }]
requires-python = ">=3.11"
dependencies = [
"click >=8.1.3, <9.0.0",
"fa_purity >=1.38.0, <2.0.0",
"pathos >=0.2.8, <1.0.0",
"mypy-boto3-batch >=1.28.36, <2.0.0",
"types-boto3 >=1.0.2, <2.0.0",
"more-itertools >=8.10.0, <10.0.0",
]
description = "AWS batch python client"
dynamic = ["version"]
Expand Down
6 changes: 3 additions & 3 deletions src/nix/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"homepage": "",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "42b0713b5f1b719d968cfaa48e2dbf28a44f7094",
"sha256": "sha256:0mkgapk4mp12vc20d1gwlyxsfj27vh08hfnpzb3x2avzgjyblzv0",
"rev": "5f5210aa20e343b7e35f40c033000db0ef80d7b9",
"sha256": "0yc83iqbzj1gd651x6p2wx7a76wfpifaq7jxz4srbinaglfwfb07",
"type": "tarball",
"url": "https://github.com/NixOS/nixpkgs/archive/42b0713b5f1b719d968cfaa48e2dbf28a44f7094.tar.gz",
"url": "https://github.com/NixOS/nixpkgs/archive/5f5210aa20e343b7e35f40c033000db0ef80d7b9.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
}
}

0 comments on commit 3d3ca83

Please sign in to comment.