python3Packages.pyatag: init at 0.3.5.3

This commit is contained in:
Robert Schütz 2021-06-14 00:01:02 +02:00 committed by Jonathan Ringer
parent 2bd51da598
commit 5474d18558
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ lib
, buildPythonPackage
, isPy27
, fetchFromGitHub
, aiohttp
}:
buildPythonPackage rec {
pname = "pyatag";
version = "0.3.5.3";
disabled = isPy27;
src = fetchFromGitHub {
owner = "MatsNl";
repo = "pyatag";
rev = version;
sha256 = "00ly4injmgrj34p0lyx7cz2crgnfcijmzc0540gf7hpwha0marf6";
};
propagatedBuildInputs = [
aiohttp
];
# no tests implemented
doCheck = false;
pythonImportsCheck = [
"pyatag"
"pyatag.discovery"
];
meta = with lib; {
description = "Python module to talk to Atag One";
homepage = "https://github.com/MatsNl/pyatag";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -5167,6 +5167,8 @@ in {
ppdeep = callPackage ../development/python-modules/ppdeep { };
pyatag = callPackage ../development/python-modules/pyatag { };
pynndescent = callPackage ../development/python-modules/pynndescent { };
pynobo = callPackage ../development/python-modules/pynobo { };