Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 poetry-core, 6 reretry, 7 snakemake-interface-common, 8 throttler, 9 wrapt, 10}: 11 12buildPythonPackage rec { 13 pname = "snakemake-interface-storage-plugins"; 14 version = "3.3.0"; 15 format = "pyproject"; 16 17 src = fetchFromGitHub { 18 owner = "snakemake"; 19 repo = pname; 20 rev = "refs/tags/v${version}"; 21 hash = "sha256-qjQZc7DIXIPmqXq+Fjslgrq2LbjbdRS/twGsp/jrxRY="; 22 }; 23 24 nativeBuildInputs = [ poetry-core ]; 25 26 propagatedBuildInputs = [ 27 reretry 28 snakemake-interface-common 29 throttler 30 wrapt 31 ]; 32 33 pythonImportsCheck = [ "snakemake_interface_storage_plugins" ]; 34 35 meta = with lib; { 36 description = "This package provides a stable interface for interactions between Snakemake and its storage plugins"; 37 homepage = "https://github.com/snakemake/snakemake-interface-storage-plugins"; 38 license = licenses.mit; 39 maintainers = with maintainers; [ veprbl ]; 40 }; 41}