Loading maintainers/maintainer-list.nix +8 −0 Original line number Diff line number Diff line Loading @@ -6644,6 +6644,14 @@ github = "ErinvanderVeen"; githubId = 10973664; }; erooke = { email = "ethan@roo.ke"; name = "Ethan Rooke"; keys = [ { fingerprint = "B66B EB9F 6111 E44B 7588 8240 B287 4A77 049A 5923"; } ]; github = "erooke"; githubId = 46689793; matrix = "@ethan:roo.ke"; }; erosennin = { email = "ag@sologoc.com"; github = "erosennin"; Loading pkgs/development/python-modules/pytask/default.nix 0 → 100644 +85 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, pythonOlder, fetchFromGitHub, hatchling, hatch-vcs, attrs, click, click-default-group, networkx, optree, packaging, pluggy, rich, sqlalchemy, universal-pathlib, pytestCheckHook, nbmake, pexpect, pytest-xdist, syrupy, git, tomli, }: buildPythonPackage rec { pname = "pytask"; version = "0.5.1"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "pytask-dev"; repo = "pytask"; rev = "v${version}"; hash = "sha256-b+sS+l0Rp5bb8Dh6UBv3xHYTYKFp3dD5AuLqxB3n6Go="; }; build-system = [ hatchling hatch-vcs ]; dependencies = [ attrs click click-default-group networkx optree packaging pluggy rich sqlalchemy universal-pathlib ] ++ lib.optionals (pythonOlder "3.11") [ tomli ]; nativeCheckInputs = [ pytestCheckHook git nbmake pexpect pytest-xdist syrupy ]; # The test suite runs the installed command for e2e tests preCheck = '' export PATH="$PATH:$out/bin"; ''; disabledTests = [ # This accesses the network "test_download_file" # Racy "test_more_nested_pytree_and_python_node_as_return_with_names" ]; meta = with lib; { description = "Workflow management system that facilitates reproducible data analyses"; homepage = "https://github.com/pytask-dev/pytask"; changelog = "https://github.com/pytask-dev/pytask/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ erooke ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -10444,6 +10444,8 @@ self: super: with self; { pysyncthru = callPackage ../development/python-modules/pysyncthru { }; pytask = callPackage ../development/python-modules/pytask { }; pytest-mockito = callPackage ../development/python-modules/pytest-mockito { }; pytest-pudb = callPackage ../development/python-modules/pytest-pudb { }; Loading Loading
maintainers/maintainer-list.nix +8 −0 Original line number Diff line number Diff line Loading @@ -6644,6 +6644,14 @@ github = "ErinvanderVeen"; githubId = 10973664; }; erooke = { email = "ethan@roo.ke"; name = "Ethan Rooke"; keys = [ { fingerprint = "B66B EB9F 6111 E44B 7588 8240 B287 4A77 049A 5923"; } ]; github = "erooke"; githubId = 46689793; matrix = "@ethan:roo.ke"; }; erosennin = { email = "ag@sologoc.com"; github = "erosennin"; Loading
pkgs/development/python-modules/pytask/default.nix 0 → 100644 +85 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, pythonOlder, fetchFromGitHub, hatchling, hatch-vcs, attrs, click, click-default-group, networkx, optree, packaging, pluggy, rich, sqlalchemy, universal-pathlib, pytestCheckHook, nbmake, pexpect, pytest-xdist, syrupy, git, tomli, }: buildPythonPackage rec { pname = "pytask"; version = "0.5.1"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "pytask-dev"; repo = "pytask"; rev = "v${version}"; hash = "sha256-b+sS+l0Rp5bb8Dh6UBv3xHYTYKFp3dD5AuLqxB3n6Go="; }; build-system = [ hatchling hatch-vcs ]; dependencies = [ attrs click click-default-group networkx optree packaging pluggy rich sqlalchemy universal-pathlib ] ++ lib.optionals (pythonOlder "3.11") [ tomli ]; nativeCheckInputs = [ pytestCheckHook git nbmake pexpect pytest-xdist syrupy ]; # The test suite runs the installed command for e2e tests preCheck = '' export PATH="$PATH:$out/bin"; ''; disabledTests = [ # This accesses the network "test_download_file" # Racy "test_more_nested_pytree_and_python_node_as_return_with_names" ]; meta = with lib; { description = "Workflow management system that facilitates reproducible data analyses"; homepage = "https://github.com/pytask-dev/pytask"; changelog = "https://github.com/pytask-dev/pytask/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ erooke ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -10444,6 +10444,8 @@ self: super: with self; { pysyncthru = callPackage ../development/python-modules/pysyncthru { }; pytask = callPackage ../development/python-modules/pytask { }; pytest-mockito = callPackage ../development/python-modules/pytest-mockito { }; pytest-pudb = callPackage ../development/python-modules/pytest-pudb { }; Loading