depot/third_party/nixpkgs/pkgs/development/python-modules/snakemake-interface-storage-plugins/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

42 lines
957 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
reretry,
snakemake-interface-common,
throttler,
wrapt,
snakemake,
}:
buildPythonPackage rec {
pname = "snakemake-interface-storage-plugins";
version = "3.2.2";
format = "pyproject";
src = fetchFromGitHub {
owner = "snakemake";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-syUjK32RPV9FMV7RSpXy+PJ2AVigGH+ywm6iTjUAuec=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
reretry
snakemake-interface-common
throttler
wrapt
];
pythonImportsCheck = [ "snakemake_interface_storage_plugins" ];
meta = with lib; {
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 = licenses.mit;
maintainers = with maintainers; [ veprbl ];
};
}