Skip to content

Commit

Permalink
poetry2conda: use poetry-core
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Nov 30, 2022
1 parent e0ed66a commit 64f3ba4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pkgs/tools/package-management/poetry2conda/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{ lib
, fetchFromGitHub
, fetchpatch
, python3
}:

Expand All @@ -16,7 +17,15 @@ with python3.pkgs; buildPythonApplication rec {
sha256 = "sha256-UqNoEGgStvqtxhYwExk7wO4SvATaM2kGaFbB5ViJa7U=";
};

nativeBuildInputs = [ poetry ];
patches = [
(fetchpatch {
name = "use-poetry-core.patch";
url = "https://github.com/dojeda/poetry2conda/commit/b127090498c89fbd8bbcbac45d03178a1e1c4219.patch";
hash = "sha256-J26NhVPG1vD/QNXi5irtGW05CYsIYvZNQIi8YvHwCLc=";
})
];

nativeBuildInputs = [ poetry-core ];

propagatedBuildInputs = [
poetry-semver
Expand Down

0 comments on commit 64f3ba4

Please sign in to comment.