Merge pull request #127495 from newAM/idasen

idasen: init at 0.7.1
This commit is contained in:
Sandro 2021-06-20 20:02:49 +02:00 committed by GitHub
commit 8609cb97bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 60 additions and 0 deletions

View file

@ -7344,6 +7344,12 @@
githubId = 17120571;
name = "Xinhao Luo";
};
newam = {
email = "alexmgit@protonmail.com";
github = "newAM";
githubId = 7845120;
name = "Alex M.";
};
nikitavoloboev = {
email = "nikita.voloboev@gmail.com";
github = "nikitavoloboev";

View file

@ -0,0 +1,50 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, bleak
, pyyaml
, voluptuous
, pytestCheckHook
, pytest-asyncio
, poetry-core
}:
buildPythonPackage rec {
pname = "idasen";
version = "0.7.1";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "newAM";
repo = "idasen";
rev = "v${version}";
sha256 = "1jdgdby33fd63mnxrfv04dz4fsrikkfmc0ybwwxi816mbkml7n34";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
bleak
pyyaml
voluptuous
];
checkInputs = [
pytestCheckHook
pytest-asyncio
];
pythonImportsCheck = [ "idasen" ];
meta = with lib; {
description = "Python API and CLI for the ikea IDÅSEN desk";
homepage = "https://github.com/newAM/idasen";
license = licenses.mit;
maintainers = with maintainers; [ newam ];
};
}

View file

@ -15668,6 +15668,8 @@ in
id3lib = callPackage ../development/libraries/id3lib { };
idasen = with python3Packages; toPythonApplication idasen;
ilbc = callPackage ../development/libraries/ilbc { };
ilixi = callPackage ../development/libraries/ilixi { };

View file

@ -3393,6 +3393,8 @@ in {
ics = callPackage ../development/python-modules/ics { };
idasen = callPackage ../development/python-modules/idasen { };
identify = callPackage ../development/python-modules/identify { };
idna = callPackage ../development/python-modules/idna { };