blob: 1620865f1869ae5b4fb67d30254cdcd24ed90130 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatch-vcs,
hatchling,
snakemake,
snakemake-interface-storage-plugins,
snakemake-interface-common,
xrootd,
}:
buildPythonPackage rec {
pname = "snakemake-storage-plugin-xrootd";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "snakemake";
repo = pname;
tag = "v${version}";
hash = "sha256-vfMAgOTmT3uzUZHXeKsd8Ze3+b3nFsVHDhkPG+xvz+k=";
};
# xrootd<6.0.0,>=5.6.4 not satisfied by version 5.7rc20240303
pythonRelaxDeps = [ "xrootd" ];
build-system = [
hatch-vcs
hatchling
];
dependencies = [
snakemake-interface-storage-plugins
snakemake-interface-common
xrootd
];
nativeCheckInputs = [ snakemake ];
pythonImportsCheck = [ "snakemake_storage_plugin_xrootd" ];
meta = with lib; {
description = "Snakemake storage plugin for handling input and output via XRootD";
homepage = "https://github.com/snakemake/snakemake-storage-plugin-xrootd";
license = licenses.mit;
maintainers = with maintainers; [ veprbl ];
};
}
|