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