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