depot/third_party/nixpkgs/pkgs/development/python-modules/pyopnsense/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

48 lines
872 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, fixtures
, mock
, pbr
, pytestCheckHook
, pythonOlder
, requests
, testtools
}:
buildPythonPackage rec {
pname = "pyopnsense";
version = "0.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-3DKlVrOtMa55gTu557pgojRpdgrO5pEZ3L+9gKoW9yg=";
};
propagatedBuildInputs = [
pbr
requests
];
nativeCheckInputs = [
fixtures
mock
pytestCheckHook
testtools
];
pythonImportsCheck = [
"pyopnsense"
];
meta = with lib; {
description = "Python client for the OPNsense API";
homepage = "https://github.com/mtreinish/pyopnsense";
changelog = "https://github.com/mtreinish/pyopnsense/releases/tag/${version}";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}