44 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
snakemake-interface-storage-plugins,
snakemake-interface-common,
sysrsync,
}:
buildPythonPackage rec {
pname = "snakemake-storage-plugin-fs";
version = "1.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "snakemake";
repo = "snakemake-storage-plugin-fs";
tag = "v${version}";
hash = "sha256-bTkT1D2GJGS+zWvK/BUGLGE8ArZQikHHcdQjREJhldg=";
};
build-system = [ poetry-core ];
dependencies = [
snakemake-interface-storage-plugins
snakemake-interface-common
sysrsync
];
# The current tests are not worth dealing with cyclic dependency on snakemake
doCheck = false;
# Use nothing due to a cyclic dependency on snakemake
pythonImportsCheck = [ ];
meta = with lib; {
description = "Snakemake storage plugin that reads and writes from a locally mounted filesystem using rsync";
homepage = "https://github.com/snakemake/snakemake-storage-plugin-fs";
license = licenses.mit;
maintainers = with maintainers; [ veprbl ];
};
}