blob: c9d157ba6c70d496e8a257cc2c985ad2044821f3 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
humanfriendly,
reretry,
snakemake-interface-common,
throttler,
wrapt,
}:
buildPythonPackage rec {
pname = "snakemake-interface-storage-plugins";
version = "4.3.2";
pyproject = true;
src = fetchFromGitHub {
owner = "snakemake";
repo = "snakemake-interface-storage-plugins";
tag = "v${version}";
hash = "sha256-W2cUwc+9jng4IvBuN+m4WqpehA8qElTRb43w3QOIeN0=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
humanfriendly
reretry
snakemake-interface-common
throttler
wrapt
];
pythonImportsCheck = [ "snakemake_interface_storage_plugins" ];
meta = {
description = "This package provides a stable interface for interactions between Snakemake and its storage plugins";
homepage = "https://github.com/snakemake/snakemake-interface-storage-plugins";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ veprbl ];
};
}
|