2021-01-08 17:48:38 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "asysocks";
|
2021-02-09 08:33:37 +00:00
|
|
|
version = "0.1.0";
|
2021-01-08 17:48:38 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-09 08:33:37 +00:00
|
|
|
sha256 = "sha256-NH53FaOJx79q5IIYeiz976H9Q8Vnw13qFw4zgRc2TTw=";
|
2021-01-08 17:48:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Upstream hasn't release the tests yet
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "asysocks" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python Socks4/5 client and server library";
|
|
|
|
homepage = "https://github.com/skelsec/asysocks";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|