From 58291dd04b7dfb4ce1d1f135651a5fa009b9e073 Mon Sep 17 00:00:00 2001 From: huantian Date: Fri, 25 Nov 2022 15:50:29 -0700 Subject: [PATCH] python3Packages.aw-client: init at 0.5.11 --- .../python-modules/aw-client/default.nix | 65 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 67 insertions(+) create mode 100644 pkgs/development/python-modules/aw-client/default.nix diff --git a/pkgs/development/python-modules/aw-client/default.nix b/pkgs/development/python-modules/aw-client/default.nix new file mode 100644 index 000000000000..f71225155595 --- /dev/null +++ b/pkgs/development/python-modules/aw-client/default.nix @@ -0,0 +1,65 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, pythonOlder +, poetry-core +, aw-core +, requests +, persist-queue +, click +, tabulate +, typing-extensions +, pytestCheckHook +}: + +buildPythonPackage rec { + pname = "aw-client"; + version = "0.5.11"; + + format = "pyproject"; + + # pypi distribution doesn't include tests, so build from source instead + src = fetchFromGitHub { + owner = "ActivityWatch"; + repo = "aw-client"; + rev = "v${version}"; + sha256 = "sha256-5WKGRoZGY+QnnB1Jzlju5OmCJreYMD8am2kW3Wcjhlw="; + }; + + disabled = pythonOlder "3.8"; + + nativeBuildInputs = [ + poetry-core + ]; + + propagatedBuildInputs = [ + aw-core + requests + persist-queue + click + tabulate + typing-extensions + ]; + + nativeCheckInputs = [ + pytestCheckHook + ]; + + # Only run this test, the others are integration tests that require + # an instance of aw-server running in order to function. + pytestFlagsArray = [ "tests/test_requestqueue.py" ]; + + preCheck = '' + # Fake home folder for tests that write to $HOME + export HOME="$TMPDIR" + ''; + + pythonImportsCheck = [ "aw_client" ]; + + meta = with lib; { + description = "Client library for ActivityWatch"; + homepage = "https://github.com/ActivityWatch/aw-client"; + maintainers = with maintainers; [ huantian ]; + license = licenses.mpl20; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8d4a6187eba5..87d76f6830af 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -847,6 +847,8 @@ self: super: with self; { avro-python3 = callPackage ../development/python-modules/avro-python3 { }; + aw-client = callPackage ../development/python-modules/aw-client { }; + aw-core = callPackage ../development/python-modules/aw-core { }; awacs = callPackage ../development/python-modules/awacs { };