Merge pull request #129628 from fabaff/bump-shellingham

This commit is contained in:
Sandro 2021-07-09 01:07:34 +02:00 committed by GitHub
commit b9edf9d0ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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.3.2"; version = "1.4.0";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.4";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "sarugaku";
sha256 = "576c1982bea0ba82fb46c36feb951319d7f42214a82634233f58b40d858a751e"; 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 ];