1{ lib 2, buildPythonPackage 3, fetchPypi 4, setuptools 5}: 6 7buildPythonPackage rec { 8 pname = "proxy-tools"; 9 version = "0.1.0"; 10 pyproject = true; 11 12 src = fetchPypi { 13 pname = "proxy_tools"; 14 inherit version; 15 hash = "sha256-zLN1H1KcBH4tilhEDYayBTA88P6BRveE0cvNlPCigBA="; 16 }; 17 18 nativeBuildInputs = [ 19 setuptools 20 ]; 21 22 # no tests in pypi 23 doCheck = false; 24 pythonImportsCheck = [ "proxy_tools" ]; 25 26 meta = with lib; { 27 homepage = "https://github.com/jtushman/proxy_tools"; 28 description = "Simple (hopefuly useful) Proxy (as in the GoF design pattern) implementation for Python"; 29 license = licenses.bsd2; 30 maintainers = with maintainers; [ jojosch ]; 31 }; 32}