mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.paramiko: 4.0.0 -> 5.0.0
Diff: https://github.com/paramiko/paramiko/compare/4.0.0...5.0.0 Changelog: https://github.com/paramiko/paramiko/blob/5.0.0/sites/www/changelog.rst
This commit is contained in:
parent
c146bd0855
commit
30a78f2925
1 changed files with 9 additions and 20 deletions
|
|
@ -3,12 +3,9 @@
|
|||
bcrypt,
|
||||
buildPythonPackage,
|
||||
cryptography,
|
||||
fetchPypi,
|
||||
gssapi,
|
||||
fetchFromGitHub,
|
||||
icecream,
|
||||
invoke,
|
||||
mock,
|
||||
pyasn1,
|
||||
pynacl,
|
||||
pytest-relaxed,
|
||||
pytestCheckHook,
|
||||
|
|
@ -17,12 +14,14 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "paramiko";
|
||||
version = "4.0.0";
|
||||
version = "5.0.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-aiXwezgMycmojSuSCtNxZ6xGZ/jZiGzOvY+Q9lS11p8=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "paramiko";
|
||||
repo = "paramiko";
|
||||
tag = version;
|
||||
hash = "sha256-zzbM2oGaZ5jkIN7LyDGuMAKSpSmUwpBbup6MBVdTaXA=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
|
@ -34,21 +33,11 @@ buildPythonPackage rec {
|
|||
pynacl
|
||||
];
|
||||
|
||||
optional-dependencies = {
|
||||
gssapi = [
|
||||
pyasn1
|
||||
gssapi
|
||||
];
|
||||
ed25519 = [ ];
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
icecream
|
||||
mock
|
||||
pytestCheckHook
|
||||
pytest-relaxed
|
||||
]
|
||||
++ lib.concatAttrValues optional-dependencies;
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "paramiko" ];
|
||||
|
||||
|
|
@ -56,7 +45,7 @@ buildPythonPackage rec {
|
|||
|
||||
meta = {
|
||||
homepage = "https://github.com/paramiko/paramiko/";
|
||||
changelog = "https://github.com/paramiko/paramiko/blob/${version}/sites/www/changelog.rst";
|
||||
changelog = "https://github.com/paramiko/paramiko/blob/${src.tag}/sites/www/changelog.rst";
|
||||
description = "Native Python SSHv2 protocol library";
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
longDescription = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue