1069dbc604
Due to an improper update during a python-updates cycle this package broke. With version 1.2.0 there is now `raincloudy.aio`, which does not get installed on recent setuptools versions, due to a misconfigured packages configuration in setup.py. Also convert the build process to a PEP517 based build using setuptools and fix the distinfo version by adding setuptools-scm. Additionally `aiohttp` is an undeclared dependencym, for which a PR has already been submitted upstream.
82 lines
1.5 KiB
Nix
82 lines
1.5 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, aioresponses
|
|
, beautifulsoup4
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, html5lib
|
|
, pytest-asyncio
|
|
, pytest-aiohttp
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests
|
|
, requests-mock
|
|
, setuptools
|
|
, setuptools-scm
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "raincloudy";
|
|
version = "1.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vanstinator";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-qCkBVirM09iA1sXiOB9FJns8bHjQq7rRk8XbRWrtBDI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
postPatch = ''
|
|
# https://github.com/vanstinator/raincloudy/pull/60
|
|
substituteInPlace setup.py \
|
|
--replace "bs4" "beautifulsoup4" \
|
|
|
|
# fix raincloudy.aio package discovery, by relying on
|
|
# autodiscovery instead.
|
|
sed -i '/packages=/d' setup.py
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
requests
|
|
beautifulsoup4
|
|
urllib3
|
|
html5lib
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
aioresponses
|
|
pytest-asyncio
|
|
pytest-aiohttp
|
|
pytestCheckHook
|
|
requests-mock
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"raincloudy"
|
|
"raincloudy.aio"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Test requires network access
|
|
"test_attributes"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module to interact with Melnor RainCloud Smart Garden Watering Irrigation Timer";
|
|
homepage = "https://github.com/vanstinator/raincloudy";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|