summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/asyncssh (follow)
Commit message (Expand)AuthorAgeFilesLines
* python3Packages.asyncssh: 2.19.0 -> 2.20.0•••https://github.com/ronf/asyncssh/blob/v2.20.0/docs/changes.rst This commit was automatically generated using update-python-libraries. Martin Weinelt2025-04-031-2/+2
* python3Packages.asyncssh: 2.17.0 -> 2.19.0•••https://github.com/ronf/asyncssh/blob/v2.19.0/docs/changes.rst Martin Weinelt2025-01-271-2/+2
* python312Packages.asyncssh: 2.15.0 -> 2.17.0•••Changelog: https://github.com/ronf/asyncssh/blob/v2.17.0/docs/changes.rst Fabian Affolter2024-09-041-2/+2
* treewide: remove unused with statements from maintainer lists•••$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!' Jörg Thalheim2024-07-291-1/+1
* python312Packages.asyncssh: 2.14.2 -> 2.15.0R. Ryantm2024-07-181-2/+2
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-42/+27
* python312Packages.asyncssh: use pyproject = trueTomaSajt2024-05-071-6/+11
* python3Packages.asyncssh: 2.14.1 -> 2.14.2•••Mitigates CVE-2023-48795 (so called Terrapin attack). https://github.com/ronf/asyncssh/blob/v2.14.2/docs/changes.rst Thomas Gerbet2023-12-191-2/+2
* python311Packages.asyncssh: 2.14.0 -> 2.14.1R. Ryantm2023-11-121-2/+2
* python310Packages.asyncssh: 2.13.2 -> 2.14.0R. Ryantm2023-10-131-2/+2
* treewide: fix sandbox darwin buildTheodore Ni2023-08-041-0/+2
* python310Packages.asyncssh: 2.13.1 -> 2.13.2•••https://github.com/ronf/asyncssh/blob/v2.13.2/docs/changes.rst Martin Weinelt2023-06-221-2/+2
* Merge pull request #212411 from fabaff/asyncssh-deps•••python310Packages.asyncssh: add optional-dependenciesFabian Affolter2023-03-141-9/+24
|\
| * python310Packages.asyncssh: add optional-dependenciesFabian Affolter2023-03-141-9/+24
* | python310Packages.asyncssh: 2.13.0 -> 2.13.1R. Ryantm2023-02-231-2/+2
* | pythonPackages.asyncssh: unbroken on darwin•••Marked as broken via bulk commit: 65db3b1 Found to build, pass tests, and function properly on darwin-x86_64. Signed-off-by: Nicholas Sielicki <git@opensource.nslick.com> Nicholas Sielicki2023-02-181-1/+0
|/
* treewide: switch to nativeCheckInputs•••checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs. Guillaume Girol2023-01-211-1/+1
* python310Packages.asyncssh: add changelog to metaFabian Affolter2022-12-291-1/+2
* python310Packages.asyncssh: 2.12.0 -> 2.13.0R. Ryantm2022-12-291-2/+2
* python310Packages.asyncssh: 2.11.0 -> 2.12.0R. Ryantm2022-08-111-2/+2
* python310Packages.asyncssh: 2.10.1 -> 2.11.0R. Ryantm2022-06-051-2/+2
* treewide: pkgs/development/python-modules: mark broken for darwinRick van Schijndel2022-05-301-1/+3
* python310Packages.asyncssh: 2.10.0 -> 2.10.1R. Ryantm2022-04-171-2/+2
* python310Packages.asyncssh: 2.9.0 -> 2.10.0R. Ryantm2022-03-271-2/+2
* python3Packages.asyncssh: 2.8.1 -> 2.9.0Fabian Affolter2022-02-061-10/+14
* python38Packages.asyncssh: 2.8.0 -> 2.8.1R. Ryantm2021-11-141-2/+2
* python3Packages.asyncssh: 2.7.2 -> 2.8.0Fabian Affolter2021-11-081-3/+9
* Merge master into staging-nextgithub-actions[bot]2021-10-171-0/+5
|\
| * python3Packages.asyncssh: disable TestSKAuthCTAP2 testsFabian Affolter2021-10-171-0/+5
* | python3Packages.asyncssh: 2.7.1 -> 2.7.2Martin Weinelt2021-10-111-2/+2
|/
* python38Packages.asyncssh: 2.7.0 -> 2.7.1R. RyanTM2021-09-071-2/+2
* python3Packages.asyncssh: 2.6.0 -> 2.7.0Fabian Affolter2021-07-021-24/+39
* python3Packages.asyncssh: 2.5.0 -> 2.6.0Martin Weinelt2021-06-211-2/+2
* treewide: remove worldofpeace from meta.maintainers•••(It was requested by them.) I left one case due to fetching from their personal repo: pkgs/desktops/pantheon/desktop/extra-elementary-contracts/default.nix Vladimír Čunát2021-05-071-1/+1
* treewide: remove stdenv where not neededPavol Rusnak2021-01-251-1/+1
* treewide: with stdenv.lib; in meta -> with lib;•••Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix Profpatsch2021-01-111-2/+2
* python37Packages.asyncssh: 2.4.2 -> 2.5.0R. RyanTM2020-12-251-2/+2
* pythonPackages.asyncssh: Switch PyTestCheckHook, disable failing testsSandro Jäckel2020-11-231-5/+8
* python37Packages.asyncssh: 2.3.0 -> 2.4.2R. RyanTM2020-09-291-2/+2
* python: asyncssh: 2.2.1 -> 2.3.0Frederik Rietdijk2020-08-161-2/+2
* python: asyncssh: 2.1.0 -> 2.2.1Frederik Rietdijk2020-06-111-2/+2
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-101-1/+1
* python3Packages.asyncssh: fix build•••The test changed from `yield from` to `await`, which broke our patch. Fix our patch. Closes #79380 Andrew Dunham2020-02-061-4/+4
* python: asyncssh: 1.18.0 -> 2.1.0Frederik Rietdijk2019-12-301-2/+2
* python37Packages.asyncssh: 1.17.1 -> 1.18.0•••Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-asyncssh/versions R. RyanTM2019-09-271-2/+2
* python37Packages.asyncssh: 1.17.0 -> 1.17.1•••Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-asyncssh/versions R. RyanTM2019-08-051-2/+2
* treewide: remove unused variables (#63177)•••* treewide: remove unused variables * making ofborg happy volth2019-06-161-1/+1
* python3.pkgs.asyncssh: 1.16.1 -> 1.17.0•••https://github.com/ronf/asyncssh/blob/master/docs/changes.rst#release-1170-31-may-2019 worldofpeace2019-06-101-9/+2
* pythonPackages.asyncssh: 1.15.1 -> 1.16.1•••https://github.com/ronf/asyncssh/blob/master/docs/changes.rst#release-1161-30-mar-2019 worldofpeace2019-04-242-8/+43
* python: asyncssh: 1.14.0 -> 1.15.1Frederik Rietdijk2019-02-171-2/+2