mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 23:51:03 +00:00
Merge master into staging-next
This commit is contained in:
75
pkgs/development/python-modules/certbot/default.nix
Normal file
75
pkgs/development/python-modules/certbot/default.nix
Normal file
@@ -0,0 +1,75 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, python, runCommand
|
||||
, fetchFromGitHub
|
||||
, ConfigArgParse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface
|
||||
, dialog, mock, gnureadline
|
||||
, pytest_xdist, pytest, pytestCheckHook, dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "certbot";
|
||||
version = "1.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1y0m5qm853i6pcpb2mrf8kjkr9wr80mdrx1qmck38ayvr2v2p5lc";
|
||||
};
|
||||
|
||||
sourceRoot = "source/${pname}";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ConfigArgParse
|
||||
acme
|
||||
configobj
|
||||
cryptography
|
||||
distro
|
||||
josepy
|
||||
parsedatetime
|
||||
pyRFC3339
|
||||
pyopenssl
|
||||
pytz
|
||||
requests
|
||||
six
|
||||
zope_component
|
||||
zope_interface
|
||||
];
|
||||
|
||||
buildInputs = [ dialog mock gnureadline ];
|
||||
|
||||
checkInputs = [
|
||||
dateutil
|
||||
pytest
|
||||
pytestCheckHook
|
||||
pytest_xdist
|
||||
];
|
||||
|
||||
pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
makeWrapperArgs = [ "--prefix PATH : ${dialog}/bin" ];
|
||||
|
||||
# certbot.withPlugins has a similar calling convention as python*.withPackages
|
||||
# it gets invoked with a lambda, and invokes that lambda with the python package set matching certbot's:
|
||||
# certbot.withPlugins (cp: [ cp.certbot-dns-foo ])
|
||||
passthru.withPlugins = f: let
|
||||
pythonEnv = python.withPackages f;
|
||||
|
||||
in runCommand "certbot-with-plugins" {
|
||||
} ''
|
||||
mkdir -p $out/bin
|
||||
cd $out/bin
|
||||
ln -s ${pythonEnv}/bin/certbot
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = src.meta.homepage;
|
||||
description = "ACME client that can obtain certs and extensibly update server configurations";
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
license = with licenses; [ asl20 ];
|
||||
};
|
||||
}
|
||||
@@ -3,13 +3,13 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pystray";
|
||||
version = "0.15.0";
|
||||
version = "0.16.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "moses-palmer";
|
||||
repo = "pystray";
|
||||
rev = "v${version}";
|
||||
sha256 = "0m5raxahyix3lmmbjbrsfd9yhr4vdil8gcy155hh6lqm2b1fmmss";
|
||||
sha256 = "0q5yqfm5mzffx9vnp9xcnclgjzgs0b7f50i9xmxn1m1iha1zawh1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pillow xlib six ];
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
{ buildPythonPackage
|
||||
, lib
|
||||
, fetchPypi
|
||||
, requests
|
||||
, pytest
|
||||
, six
|
||||
, werkzeug
|
||||
}:
|
||||
|
||||
@@ -17,16 +14,16 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ werkzeug ];
|
||||
checkInputs = [ pytest six requests ];
|
||||
|
||||
checkPhase = ''
|
||||
pytest
|
||||
'';
|
||||
# all tests access network: does not work in sandbox
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "pytest_localserver" ];
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Plugin for the pytest testing framework to test server connections locally";
|
||||
homepage = "https://pypi.python.org/pypi/pytest-localserver";
|
||||
license = lib.licenses.mit;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ siriobalmelli ];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user