nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

default.nix (1063B)


      1 {
      2   lib,
      3   fetchFromGitHub,
      4   python3Packages,
      5 }:
      6 
      7 python3Packages.buildPythonApplication rec {
      8   pname = "amqtt";
      9   version = "0.10.1-unstable-2025-01-08";
     10   pyproject = true;
     11 
     12   src = fetchFromGitHub {
     13     owner = "Yakifo";
     14     repo = "amqtt";
     15     rev = "440e8ff945bf83c262f3a9d16be2f014fce6265c";
     16     hash = "sha256-ZFXIYgjNnYqBLLdYgxDpG9JG7weuY3vlHC4pwZlFsh0=";
     17   };
     18 
     19   build-system = with python3Packages; [ poetry-core ];
     20 
     21   dependencies = with python3Packages; [
     22     docopt
     23     passlib
     24     pyyaml
     25     transitions
     26     websockets
     27   ];
     28 
     29   pythonRelaxDeps = [
     30     "transitions"
     31     "websockets"
     32   ];
     33 
     34   doCheck = false;
     35 
     36   nativeCheckInputs = with python3Packages; [
     37     hypothesis
     38     psutil
     39     pytest-asyncio
     40     pytest-cov-stub
     41     pytest-logdog
     42     pytestCheckHook
     43   ];
     44 
     45   pythonImportsCheck = [ "amqtt" ];
     46 
     47   __darwinAllowLocalNetworking = true;
     48 
     49   meta = {
     50     description = "MQTT client/broker using Python asyncio";
     51     homepage = "https://github.com/Yakifo/amqtt";
     52     license = lib.licenses.mit;
     53     maintainers = [ lib.maintainers.sikmir ];
     54   };
     55 }