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/pescea/default.nix

58 lines
1.1 KiB

{ lib
, async-timeout
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytest-mock
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pescea";
version = "1.0.10";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "lazdavila";
repo = pname;
rev = "v${version}";
sha256 = "Q38mLGjrRdXEvT+PCNsil1e2p0mmM0Xy8TUx9QOnFRA=";
};
propagatedBuildInputs = [
async-timeout
];
checkInputs = [
pytest-asyncio
pytest-mock
pytestCheckHook
];
postPatch = ''
# https://github.com/lazdavila/pescea/pull/1
substituteInPlace setup.py \
--replace '"asyncio",' ""
'';
disabledTests = [
# AssertionError: assert <State.BUSY: 'BusyWaiting'>...
"test_updates_while_busy"
# Test requires network access
"test_flow_control"
];
pythonImportsCheck = [
"pescea"
];
meta = with lib; {
description = "Python interface to Escea fireplaces";
homepage = "https://github.com/lazdavila/pescea";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ fab ];
};
}