python3Packages.pysyncthru: init at 0.7.3

This commit is contained in:
Robert Schütz 2021-06-28 14:22:39 +02:00
parent 536cb54f81
commit 5698f71177
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ lib
, isPy27
, buildPythonPackage
, fetchPypi
, aiohttp
, demjson
, python
}:
buildPythonPackage rec {
pname = "pysyncthru";
version = "0.7.3";
disabled = isPy27;
src = fetchPypi {
pname = "PySyncThru";
inherit version;
sha256 = "13564018a7de4fe013e195e19d7bae92aa224e0f3a32373576682722d3dbee52";
};
propagatedBuildInputs = [
aiohttp
demjson
];
checkPhase = ''
${python.interpreter} -m unittest
'';
# no tests on PyPI, no tags on GitHub
doCheck = false;
pythonImportsCheck = [ "pysyncthru" ];
meta = with lib; {
description = "Automated JSON API based communication with Samsung SyncThru Web Service";
homepage = "https://github.com/nielstron/pysyncthru";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -5347,6 +5347,8 @@ in {
pysiaalarm = callPackage ../development/python-modules/pysiaalarm { };
pysyncthru = callPackage ../development/python-modules/pysyncthru { };
pytest-subprocess = callPackage ../development/python-modules/pytest-subprocess { };
python-codon-tables = callPackage ../development/python-modules/python-codon-tables { };