mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
562 B
Nix
26 lines
562 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "asysocks";
|
|
version = "0.1.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-7EzSALAJcx8BNHX44FeeiSPRcTe9UFHXQ4IoSKxMU8w=";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|