Update execnet overrides in upstream

This commit is contained in:
Andreas Zweili 2023-07-12 21:23:18 +02:00
parent 3ded676db9
commit 1d61db65f0
2 changed files with 7 additions and 15 deletions

View File

@ -60,15 +60,16 @@
]
},
"locked": {
"lastModified": 1688992084,
"narHash": "sha256-pKOcnbTT0zAybza8Wz94ezG+5ghzXoHQxXahtsc2Yrw=",
"owner": "nix-community",
"lastModified": 1689189561,
"narHash": "sha256-tKBRS2boaGWcDQ0J4sh8jNMgmTJAdqLYp7UKozs+NPc=",
"owner": "Nebucatnetzer",
"repo": "poetry2nix",
"rev": "77a4f59685053a77644fd35fc2063751af63aca7",
"rev": "2f53cf3c1b98680abb02b776dbb7ebb2fd8343b6",
"type": "github"
},
"original": {
"owner": "nix-community",
"owner": "Nebucatnetzer",
"ref": "execnet-overrides",
"repo": "poetry2nix",
"type": "github"
}

View File

@ -4,7 +4,7 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
poetry2nix = {
url = "github:nix-community/poetry2nix";
url = "github:Nebucatnetzer/poetry2nix/execnet-overrides";
inputs.nixpkgs.follows = "nixpkgs";
};
@ -18,15 +18,6 @@
{
projectDir = ./.;
groups = [ "main" "dev" ];
overrides = poetry2nix.defaultPoetryOverrides.extend
(self: super: {
execnet = super.execnet.overridePythonAttrs
(
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ super.hatchling ];
}
);
});
};
inventoryPackage = prev.poetry2nix.mkPoetryApplication {
projectDir = ./.;