Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 24 lines 442 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "pysocks"; 8 version = "1.7.0"; 9 10 src = fetchPypi { 11 pname = "PySocks"; 12 inherit version; 13 sha256 = "0z4p31bpqm893cf87qqgb30k7nwd8kqfjwwjm5cvxb6zbyj1w0yr"; 14 }; 15 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 description = "SOCKS module for Python"; 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ thoughtpolice ]; 22 }; 23 24}