Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Commit

Permalink
build: Bump nixpkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
l0b0 committed Jan 8, 2023
1 parent 8131215 commit 733d363
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 78 deletions.
6 changes: 3 additions & 3 deletions nixpkgs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "release-22.11-2022-12-05T21-44-34Z",
"url": "https://github.com/NixOS/nixpkgs/archive/52e3e80afff4b16ccb7c52e9f0f5220552f03d04.tar.gz",
"sha256": "0x0pc4qm0adsdbr8n20ghl7byq9n0bvj9fjiiqzp9839cippp9hn"
"name": "release-22.11-2023-01-08T19-45-12Z",
"url": "https://github.com/NixOS/nixpkgs/archive/7f8b4595a7e5dfd4cc871e769209f3a85bdee30a.tar.gz",
"sha256": "15nv4nc2fs6h7ck5ng4grxwz6nigbcpmf1im7s3h7169f5by55i7"
}
79 changes: 4 additions & 75 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,87 +12,16 @@ let
poetryEnv = pkgs.poetry2nix.mkPoetryEnv {
inherit python projectDir;
overrides = pkgs.poetry2nix.overrides.withDefaults (self: super: {
aws-cdk-asset-awscli-v1 = super.aws-cdk-asset-awscli-v1.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
aws-cdk-asset-kubectl-v20 = super.aws-cdk-asset-kubectl-v20.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
aws-cdk-asset-node-proxy-agent-v5 = super.aws-cdk-asset-node-proxy-agent-v5.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
aws-cdk-aws-batch-alpha = super.aws-cdk-aws-batch-alpha.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
aws-cdk-aws-lambda-python-alpha = super.aws-cdk-aws-lambda-python-alpha.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
aws-cdk-lib = super.aws-cdk-lib.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
constructs = super.constructs.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
filelock = super.filelock.overridePythonAttrs (
# In poetry2nix >1.39.1
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.hatchling self.hatch-vcs ];
}
);
jsii = super.jsii.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
mypy-boto3-ssm = super.mypy-boto3-ssm.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
mypy-boto3-stepfunctions = super.mypy-boto3-stepfunctions.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
mypy-boto3-sts = super.mypy-boto3-sts.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
pystac = super.pystac.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
python-ulid = super.python-ulid.override {
preferWheel = true;
};
types-pkg-resources = super.types-pkg-resources.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
types-python-dateutil = super.types-python-dateutil.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
}
);
types-six = super.types-six.overridePythonAttrs (
python-ulid = super.python-ulid.overridePythonAttrs (
# https://github.com/nix-community/poetry2nix/pull/931
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools ];
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.setuptools-scm ];
}
);
});
Expand Down

0 comments on commit 733d363

Please sign in to comment.