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

39 lines
951 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
argparse-dataclass,
throttler,
snakemake-interface-common,
}:
buildPythonPackage rec {
pname = "snakemake-interface-executor-plugins";
version = "9.1.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "snakemake";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-jANSGNdWmc6ERClLR/pExoboyz8gUL2FW3W7kDQDOQo=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
argparse-dataclass
throttler
snakemake-interface-common
];
pythonImportsCheck = [ "snakemake_interface_executor_plugins" ];
meta = with lib; {
description = "This package provides a stable interface for interactions between Snakemake and its executor plugins";
homepage = "https://github.com/snakemake/snakemake-interface-executor-plugins";
license = licenses.mit;
maintainers = with maintainers; [ veprbl ];
};
}