mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
commit
8609cb97bd
@ -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";
|
||||
|
50
pkgs/development/python-modules/idasen/default.nix
Normal file
50
pkgs/development/python-modules/idasen/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user