python3Packages.asysocks: init at 0.0.10
This commit is contained in:
parent
69dc12e045
commit
2c01bd8a38
25
pkgs/development/python-modules/asysocks/default.nix
Normal file
25
pkgs/development/python-modules/asysocks/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "asysocks";
|
||||||
|
version = "0.0.10";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1h9awwnn4dr3ppdlnjb4abhyw873n1iddipw6wkwjpw7nnaqqr6i";
|
||||||
|
};
|
||||||
|
|
||||||
|
# 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user