Merge pull request #66645 from WhittlesJr/python-easysnmp-and-poster3
pythonPackages.easysnmp: init at 0.2.5; python3Packages.poster3: init at 0.8.1
This commit is contained in:
commit
19fb94212b
|
@ -7093,6 +7093,12 @@
|
|||
email = "kirill.wedens@gmail.com";
|
||||
name = "wedens";
|
||||
};
|
||||
WhittlesJr = {
|
||||
email = "alex.joseph.whitt@gmail.com";
|
||||
github = "WhittlesJr";
|
||||
githubId = 19174984;
|
||||
name = "Alex Whitt";
|
||||
};
|
||||
willibutz = {
|
||||
email = "willibutz@posteo.de";
|
||||
github = "willibutz";
|
||||
|
|
56
pkgs/development/python-modules/easysnmp/default.nix
Normal file
56
pkgs/development/python-modules/easysnmp/default.nix
Normal file
|
@ -0,0 +1,56 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, buildPythonPackage
|
||||
, pythonAtLeast
|
||||
, fetchFromGitHub
|
||||
, net_snmp
|
||||
, openssl
|
||||
, pytest
|
||||
, pytestcov
|
||||
, pytest-flake8
|
||||
, pytest-sugar
|
||||
, termcolor
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "easysnmp";
|
||||
version = "0.2.5";
|
||||
|
||||
# See https://github.com/kamakazikamikaze/easysnmp/issues/108
|
||||
disabled = pythonAtLeast "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kamakazikamikaze";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1si9iyxqj6z22jzn6m93lwpinsqn20lix2py3jm3g3fmwawkd735";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytest
|
||||
pytestcov
|
||||
pytest-flake8
|
||||
pytest-sugar
|
||||
termcolor
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
net_snmp
|
||||
openssl
|
||||
];
|
||||
|
||||
buildPhase = ''
|
||||
python setup.py build bdist_wheel --basedir=${net_snmp}/bin
|
||||
'';
|
||||
|
||||
# Unable to get tests to pass, even running by hand. The pytest tests have
|
||||
# become stale.
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A blazingly fast and Pythonic SNMP library based on the official Net-SNMP bindings";
|
||||
homepage = https://easysnmp.readthedocs.io/en/latest/;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ WhittlesJr ];
|
||||
};
|
||||
}
|
36
pkgs/development/python-modules/poster3/default.nix
Normal file
36
pkgs/development/python-modules/poster3/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, paste
|
||||
, webob
|
||||
, pyopenssl
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "poster3";
|
||||
version = "0.8.1";
|
||||
format = "wheel"; # only redistributable available
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
format = "wheel";
|
||||
python = "py3";
|
||||
sha256 = "1b27d7d63e3191e5d7238631fc828e4493590e94dcea034e386c079d853cce14";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
paste
|
||||
webob
|
||||
pyopenssl
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Streaming HTTP uploads and multipart/form-data encoding";
|
||||
homepage = https://atlee.ca/software/poster/;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ WhittlesJr ];
|
||||
};
|
||||
}
|
|
@ -1703,6 +1703,11 @@ in {
|
|||
|
||||
dugong = callPackage ../development/python-modules/dugong {};
|
||||
|
||||
easysnmp = callPackage ../development/python-modules/easysnmp {
|
||||
openssl = pkgs.openssl;
|
||||
net_snmp = pkgs.net_snmp;
|
||||
};
|
||||
|
||||
iowait = callPackage ../development/python-modules/iowait {};
|
||||
|
||||
responses = callPackage ../development/python-modules/responses {};
|
||||
|
@ -1711,6 +1716,8 @@ in {
|
|||
|
||||
proboscis = callPackage ../development/python-modules/proboscis {};
|
||||
|
||||
poster3 = callPackage ../development/python-modules/poster3 { };
|
||||
|
||||
py4j = callPackage ../development/python-modules/py4j { };
|
||||
|
||||
pyechonest = callPackage ../development/python-modules/pyechonest { };
|
||||
|
|
Loading…
Reference in a new issue