Skip to content

Commit

Permalink
python3.pkgs.hass-nabucasa: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Jun 19, 2020
1 parent 25b91c2 commit df65cd2
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions pkgs/development/python-modules/hass-nabucasa/default.nix
@@ -1,28 +1,40 @@
{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch
, acme, aiohttp, snitun, attrs, pycognito, warrant
, pytest-aiohttp, asynctest, pytest }:
, pytest-aiohttp, asynctest, atomicwrites, pytest, pythonOlder }:

buildPythonPackage rec {
pname = "hass-nabucasa";
version = "0.32.2";
version = "0.34.6";

src = fetchFromGitHub {
owner = "nabucasa";
repo = pname;
rev = version;
sha256 = "1hfi5q222kgbgrj5yvr4lbhca49hcs6sc2yhxc4pjxqsc12bv1f1";
sha256 = "1lkqwj58qr0vn7zf5mhrhaz973ahj9wjp4mgzvyja1gcdh6amv34";
};

# upstreamed in https://github.com/NabuCasa/hass-nabucasa/pull/119
postPatch = ''
sed -i 's/"acme.*/"acme>=0.40.0,<2.0"/' setup.py
cat setup.py
sed -i 's/"acme.*"/"acme"/' 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 ];

# Asynctest's mocking is broken with python3.8
# https://github.com/Martiusweb/asynctest/issues/132
doCheck = pythonOlder "3.8";

checkPhase = ''
pytest tests/
'';
Expand Down

0 comments on commit df65cd2

Please sign in to comment.