python3Packages.python-pooldose: init at 0.6.0

Changed files
+47
pkgs
development
python-modules
python-pooldose
top-level
+45
pkgs/development/python-modules/python-pooldose/default.nix
···
···
+
{
+
aiofiles,
+
aiohttp,
+
buildPythonPackage,
+
fetchFromGitHub,
+
lib,
+
pytest-asyncio,
+
pytestCheckHook,
+
setuptools,
+
}:
+
+
buildPythonPackage rec {
+
pname = "python-pooldose";
+
version = "0.6.0";
+
pyproject = true;
+
+
src = fetchFromGitHub {
+
owner = "lmaertin";
+
repo = "python-pooldose";
+
tag = version;
+
hash = "sha256-hKZOOeTigK8E+MAq5+zUmdWwGrAn+0ZGmOn66QTU1RM=";
+
};
+
+
build-system = [ setuptools ];
+
+
dependencies = [
+
aiofiles
+
aiohttp
+
];
+
+
pythonImportsCheck = [ "pooldose" ];
+
+
nativeCheckInputs = [
+
pytest-asyncio
+
pytestCheckHook
+
];
+
+
meta = {
+
changelog = "https://github.com/lmaertin/python-pooldose/blob/${src.tag}/CHANGELOG.md";
+
description = "Unoffical async Python client for SEKO PoolDose devices";
+
homepage = "https://github.com/lmaertin/python-pooldose";
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ dotlambda ];
+
};
+
}
+2
pkgs/top-level/python-packages.nix
···
python-pkcs11 = callPackage ../development/python-modules/python-pkcs11 { };
python-poppler = callPackage ../development/python-modules/python-poppler { };
python-pptx = callPackage ../development/python-modules/python-pptx { };
···
python-pkcs11 = callPackage ../development/python-modules/python-pkcs11 { };
+
python-pooldose = callPackage ../development/python-modules/python-pooldose { };
+
python-poppler = callPackage ../development/python-modules/python-poppler { };
python-pptx = callPackage ../development/python-modules/python-pptx { };