3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/hass-nabucasa/default.nix

39 lines
985 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub
2020-03-18 17:03:58 +00:00
, acme, aiohttp, snitun, attrs, pycognito, warrant
, pytest-aiohttp, asynctest, atomicwrites, pytest }:
buildPythonPackage rec {
pname = "hass-nabucasa";
version = "0.39.0";
src = fetchFromGitHub {
owner = "nabucasa";
repo = pname;
rev = version;
sha256 = "1bsvwxddpp4dsq3k2320qrx5x9lscqzffzz1zj6fbwgc4741f01w";
};
postPatch = ''
2020-06-19 10:52:29 +01:00
sed -i 's/"acme.*"/"acme"/' setup.py
sed -i 's/"attrs.*"/"attrs"/' setup.py
sed -i 's/"cryptography.*"/"cryptography"/' setup.py
'';
2020-06-19 10:52:29 +01:00
propagatedBuildInputs = [
acme aiohttp atomicwrites snitun attrs warrant pycognito
];
2020-03-18 17:03:58 +00:00
checkInputs = [ pytest pytest-aiohttp asynctest ];
checkPhase = ''
pytest tests/
2020-03-18 17:03:58 +00:00
'';
meta = with lib; {
homepage = "https://github.com/NabuCasa/hass-nabucasa";
description = "Home Assistant cloud integration by Nabu Casa, inc.";
license = licenses.gpl3;
maintainers = with maintainers; [ Scriptkiddi ];
};
}