ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / proxy_tools / default.nix
blobe4596956dda87037239538734668d22b4a6bc42f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "proxy_tools";
8   version = "0.1.0";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-zLN1H1KcBH4tilhEDYayBTA88P6BRveE0cvNlPCigBA=";
13   };
15   # no tests in pypi
16   doCheck = false;
17   pythonImportsCheck = [ "proxy_tools" ];
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   };