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/py-synologydsm-api/default.nix

45 lines
798 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, requests
, urllib3
}:
buildPythonPackage rec {
pname = "py-synologydsm-api";
version = "1.0.8";
format = "pyproject";
src = fetchFromGitHub {
owner = "mib1185";
repo = "synologydsm-api";
rev = "v${version}";
sha256 = "sha256-9bh7uLt9+uda6yFCWV6xUh//jFC4DgiS+KtRXQrU3A8=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
requests
urllib3
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"synology_dsm"
];
meta = with lib; {
description = "Python API for Synology DSM";
homepage = "https://github.com/hacf-fr/synologydsm-api";
license = licenses.mit;
maintainers = with maintainers; [ uvnikita ];
};
}