python3Packages.shellingham: enable tests

This commit is contained in:
Fabian Affolter 2021-07-08 11:28:06 +02:00
parent 505fc54e22
commit afbc7eb825

View file

@ -1,18 +1,33 @@
{ lib, buildPythonPackage, fetchPypi { lib
, buildPythonPackage
, fetchFromGitHub
, pytest-mock
, pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "shellingham"; pname = "shellingham";
version = "1.4.0"; version = "1.4.0";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.4";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "sarugaku";
sha256 = "sha256-SFXCRY1pBIKb00wpnxH97tfP77+KLFIuTK6mzXazFx4="; repo = pname;
rev = version;
sha256 = "0f686ym3ywjffis5jfqkhsshjgii64060hajysczflhffrjn9jcp";
}; };
checkInputs = [
pytest-mock
pytestCheckHook
];
pythonImportsCheck = [ "shellingham" ];
meta = with lib; { meta = with lib; {
description = "Tool to Detect Surrounding Shell"; description = "Tool to detect the surrounding shell";
homepage = "https://github.com/sarugaku/shellingham"; homepage = "https://github.com/sarugaku/shellingham";
license = licenses.isc; license = licenses.isc;
maintainers = with maintainers; [ mbode ]; maintainers = with maintainers; [ mbode ];