diff options
| author | Fabian Affolter <mail@fabian-affolter.ch> | 2021-04-29 09:19:38 +0200 |
|---|---|---|
| committer | Fabian Affolter <mail@fabian-affolter.ch> | 2021-04-29 09:19:38 +0200 |
| commit | 4ec3123b82d7c4e96ec7f55cdfa27e74be87f108 (patch) | |
| tree | a6946369b041ae2ab650e111d4a46dd15c56be0e /pkgs/development/python-modules/screenlogicpy/default.nix | |
| parent | python3Packages.screenlogicpy: 0.3.0 -> 0.4.1 (diff) | |
| download | nixpkgs-4ec3123b82d7c4e96ec7f55cdfa27e74be87f108.tar.gz | |
python3Packages.screenlogicpy: enable tests
Diffstat (limited to 'pkgs/development/python-modules/screenlogicpy/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/screenlogicpy/default.nix | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/screenlogicpy/default.nix b/pkgs/development/python-modules/screenlogicpy/default.nix index be9cbc6f13eb..1713e4c2521f 100644 --- a/pkgs/development/python-modules/screenlogicpy/default.nix +++ b/pkgs/development/python-modules/screenlogicpy/default.nix @@ -1,7 +1,8 @@ { lib , buildPythonPackage -, fetchPypi +, fetchFromGitHub , pythonOlder +, pytestCheckHook }: buildPythonPackage rec { @@ -9,14 +10,23 @@ buildPythonPackage rec { version = "0.4.1"; disabled = pythonOlder "3.6"; - src = fetchPypi { - inherit pname version; - sha256 = "sha256-Hj+AS8YN7ZtmgY5sUj4TmQspzeiKiLz6dBbmjhGCgXI="; + src = fetchFromGitHub { + owner = "dieselrabbit"; + repo = pname; + rev = "v${version}"; + sha256 = "1rmjxqqbkfcv2xz8ilml799bzffls678fvq784fab2xdv595fndd"; }; - # Project doesn't publish tests - # https://github.com/dieselrabbit/screenlogicpy/issues/8 - doCheck = false; + checkInputs = [ + pytestCheckHook + ]; + + disabledTests = [ + # Tests require network access + "test_gateway_discovery" + "test_asyncio_gateway_discovery" + ]; + pythonImportsCheck = [ "screenlogicpy" ]; meta = with lib; { |
