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