mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
python.pkgs.asyncssh: 1.13.3 -> 1.14.0
This commit is contained in:
parent
61b2e0cba8
commit
710b3d678b
@ -1,18 +1,19 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder
|
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder
|
||||||
, cryptography
|
, cryptography
|
||||||
, bcrypt, gssapi, libnacl, libsodium, nettle, pyopenssl }:
|
, bcrypt, gssapi, libnacl, libsodium, nettle, pyopenssl
|
||||||
|
, openssl }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "asyncssh";
|
pname = "asyncssh";
|
||||||
version = "1.13.3";
|
version = "1.14.0";
|
||||||
disabled = pythonOlder "3.4";
|
disabled = pythonOlder "3.4";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "eb5b190badc5cd2a506a1b6ced3e92f948166974eef7d1abab61acc67aa379e6";
|
sha256 = "0f1i5a760a3jylkj00bxkshnylzyhyqz50v8mb8s9ygllpzja058";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
bcrypt
|
bcrypt
|
||||||
cryptography
|
cryptography
|
||||||
gssapi
|
gssapi
|
||||||
@ -22,6 +23,8 @@ buildPythonPackage rec {
|
|||||||
pyopenssl
|
pyopenssl
|
||||||
];
|
];
|
||||||
|
|
||||||
|
checkInputs = [ openssl ];
|
||||||
|
|
||||||
# Disables windows specific test (specifically the GSSAPI wrapper for Windows)
|
# Disables windows specific test (specifically the GSSAPI wrapper for Windows)
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
rm ./tests/sspi_stub.py
|
rm ./tests/sspi_stub.py
|
||||||
@ -29,8 +32,8 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Provides an asynchronous client and server implementation of the SSHv2 protocol on top of the Python asyncio framework";
|
description = "Provides an asynchronous client and server implementation of the SSHv2 protocol on top of the Python asyncio framework";
|
||||||
homepage = https://pypi.python.org/pypi/asyncssh;
|
homepage = https://pypi.python.org/pypi/asyncssh;
|
||||||
license = licenses.epl10;
|
license = licenses.epl20;
|
||||||
maintainers = with maintainers; [ worldofpeace ];
|
maintainers = with maintainers; [ worldofpeace ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user