nur-packages

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

commit d31ef21babb1c6410245c0dedd4ea9be81547a35
parent d525d9bc445778ec5cf17b939bf007dc2b33f4a9
Author: Nikolay Korotkiy <sikmir@gmail.com>
Date:   Sat, 24 Oct 2020 22:31:17 +0300

jsonseq,mikatools: enable tests

Diffstat:
Mpkgs/development/python-modules/jsonseq/default.nix | 2++
Mpkgs/development/python-modules/mikatools/default.nix | 2++
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/pkgs/development/python-modules/jsonseq/default.nix b/pkgs/development/python-modules/jsonseq/default.nix @@ -8,6 +8,8 @@ python3Packages.buildPythonPackage { inherit pname version; src = sources.jsonseq; + checkInputs = with python3Packages; [ pytestCheckHook ]; + meta = with lib; { inherit (sources.jsonseq) description homepage; license = licenses.mit; diff --git a/pkgs/development/python-modules/mikatools/default.nix b/pkgs/development/python-modules/mikatools/default.nix @@ -10,6 +10,8 @@ python3Packages.buildPythonPackage { propagatedBuildInputs = with python3Packages; [ requests clint ]; + checkInputs = with python3Packages; [ pytestCheckHook ]; + meta = with lib; { inherit (sources.mikatools) description homepage; license = licenses.mit;