depot/third_party/nixpkgs/pkgs/development/python-modules/qnap-qsw/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

36 lines
736 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
requests,
}:
buildPythonPackage rec {
pname = "qnap-qsw";
version = "0.3.0";
format = "setuptools";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "Noltari";
repo = "python-qnap-qsw";
rev = version;
sha256 = "WP1bGt7aAtSVFOMJgPXKqVSbi5zj9K7qoIVrYCrPGqk=";
};
propagatedBuildInputs = [ requests ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "qnap_qsw" ];
meta = with lib; {
description = "Python library to interact with the QNAP QSW API";
homepage = "https://github.com/Noltari/python-qnap-qsw";
license = licenses.gpl2Only;
maintainers = with maintainers; [ fab ];
};
}