3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.proxy_tools: init at 0.1.0

This commit is contained in:
Johannes Schleifenbaum 2021-12-06 10:49:21 +01:00
parent 4a6aa6acfd
commit 92c40f2d59
No known key found for this signature in database
GPG key ID: 059093B1A278BCD0
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "proxy_tools";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-zLN1H1KcBH4tilhEDYayBTA88P6BRveE0cvNlPCigBA=";
};
# no tests in pypi
doCheck = false;
pythonImportsCheck = [ "proxy_tools" ];
meta = with lib; {
homepage = "https://github.com/jtushman/proxy_tools";
description = "Simple (hopefuly useful) Proxy (as in the GoF design pattern) implementation for Python";
license = licenses.bsd2;
maintainers = with maintainers; [ jojosch ];
};
}

View file

@ -5813,6 +5813,8 @@ in {
ppdeep = callPackage ../development/python-modules/ppdeep { };
proxy_tools = callPackage ../development/python-modules/proxy_tools { };
pyaehw4a1 = callPackage ../development/python-modules/pyaehw4a1 { };
pyatag = callPackage ../development/python-modules/pyatag { };