My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/qnap-qsw/default.nix

39 lines
741 B

{ 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 ];
};
}