mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
37 lines
982 B
Nix
37 lines
982 B
Nix
# dateparser tests fail on pyton37: https://github.com/NixOS/nixpkgs/issues/52766
|
|
{ lib, python36, glibcLocales }:
|
|
|
|
python36.pkgs.buildPythonApplication rec {
|
|
pname = "homeassistant-cli";
|
|
version = "0.4.4";
|
|
|
|
src = python36.pkgs.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "ad3722062ffb7b4fa730f61991b831dbf083e4e079c560993a023ce4bb11c55d";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Ignore pinned versions
|
|
sed -i "s/'\(.*\)\(==\|>=\).*'/'\1'/g" setup.py
|
|
'';
|
|
|
|
propagatedBuildInputs = with python36.pkgs; [
|
|
requests pyyaml netdisco click click-log tabulate idna jsonpath_rw jinja2 dateparser
|
|
];
|
|
|
|
checkInputs = with python36.pkgs; [
|
|
pytest requests-mock glibcLocales
|
|
];
|
|
|
|
checkPhase = ''
|
|
LC_ALL=en_US.UTF-8 pytest
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Command-line tool for Home Asssistant";
|
|
homepage = https://github.com/home-assistant/home-assistant-cli;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|