Skip to content

Commit 6b16ea2

Browse files
edmundmillerclaude
andcommitted
feat: Add nf-conda package manager plugin
Creates the nf-conda plugin that implements conda support for the unified package management system: - CondaPlugin: Main plugin class - CondaPackageProvider: Implements PackageProvider interface - CondaProviderExtension: Registers the provider with Nextflow - Includes existing CondaCache and CondaConfig implementations This plugin enables conda package management through the new unified 'package' directive while maintaining all existing conda functionality and configuration options. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]> Signed-off-by: Edmund Miller <[email protected]>
1 parent e91a501 commit 6b16ea2

File tree

8 files changed

+756
-0
lines changed

8 files changed

+756
-0
lines changed

plugins/nf-conda/build.gradle

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*
2+
* Copyright 2021-2023, Seqera Labs
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
plugins {
18+
id 'nextflow-plugin'
19+
}
20+
21+
group = 'io.nextflow'
22+
version = '1.0.0'
23+
gitBranch = 'main'
24+
25+
dependencies {
26+
// plugin dependencies
27+
api project(':nextflow')
28+
29+
// test dependencies
30+
testImplementation(testFixtures(project(':nextflow')))
31+
testImplementation 'org.codehaus.groovy:groovy-test:3.0.19'
32+
testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0'
33+
testImplementation 'org.testcontainers:testcontainers:1.20.0'
34+
testImplementation 'org.testcontainers:spock:1.20.0'
35+
}

0 commit comments

Comments
 (0)