mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 17:23:34 +00:00
python3Packages.nessclient: enable tests
This commit is contained in:
parent
111b9e5630
commit
6ba4962a15
@ -1,9 +1,12 @@
|
||||
{ lib
|
||||
, asynctest
|
||||
, buildPythonPackage
|
||||
, click
|
||||
, fetchFromGitHub
|
||||
, justbackoff
|
||||
, pythonOlder
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -25,15 +28,18 @@ buildPythonPackage rec {
|
||||
click
|
||||
];
|
||||
|
||||
# Tests are not shipped
|
||||
doCheck = false;
|
||||
checkInputs = [
|
||||
asynctest
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"nessclient"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python implementation/abstraction of the Ness D8x / D16x Serial Interface ASCII protocol";
|
||||
description = "Python implementation/abstraction of the Ness D8x/D16x Serial Interface ASCII protocol";
|
||||
homepage = "https://github.com/nickw444/nessclient";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
|
Loading…
Reference in New Issue
Block a user