mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
python3.pkgs.hass-nabucasa: fix build
This commit is contained in:
parent
25b91c2059
commit
df65cd2ef9
@ -1,28 +1,40 @@
|
|||||||
{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch
|
{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch
|
||||||
, acme, aiohttp, snitun, attrs, pycognito, warrant
|
, acme, aiohttp, snitun, attrs, pycognito, warrant
|
||||||
, pytest-aiohttp, asynctest, pytest }:
|
, pytest-aiohttp, asynctest, atomicwrites, pytest, pythonOlder }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "hass-nabucasa";
|
pname = "hass-nabucasa";
|
||||||
version = "0.32.2";
|
version = "0.34.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nabucasa";
|
owner = "nabucasa";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1hfi5q222kgbgrj5yvr4lbhca49hcs6sc2yhxc4pjxqsc12bv1f1";
|
sha256 = "1lkqwj58qr0vn7zf5mhrhaz973ahj9wjp4mgzvyja1gcdh6amv34";
|
||||||
};
|
};
|
||||||
|
|
||||||
# upstreamed in https://github.com/NabuCasa/hass-nabucasa/pull/119
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
sed -i 's/"acme.*/"acme>=0.40.0,<2.0"/' setup.py
|
sed -i 's/"acme.*"/"acme"/' setup.py
|
||||||
cat setup.py
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ acme aiohttp snitun attrs warrant pycognito ];
|
patches = [
|
||||||
|
# relax pytz dependency
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/NabuCasa/hass-nabucasa/commit/419e80feddc36c68384c032feda0057515b53eaa.patch";
|
||||||
|
sha256 = "14dgwci8615cwcf27hg7b42s7da50xhyjys3yx446q7ipk8zw4x6";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
acme aiohttp atomicwrites snitun attrs warrant pycognito
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [ pytest pytest-aiohttp asynctest ];
|
checkInputs = [ pytest pytest-aiohttp asynctest ];
|
||||||
|
|
||||||
|
# Asynctest's mocking is broken with python3.8
|
||||||
|
# https://github.com/Martiusweb/asynctest/issues/132
|
||||||
|
doCheck = pythonOlder "3.8";
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
pytest tests/
|
pytest tests/
|
||||||
'';
|
'';
|
||||||
|
Loading…
Reference in New Issue
Block a user