Unverified Commit a8ad5cd8 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

nvchecker: 2.15.1 -> 2.16 (#382186)

parents 461ca928 4f23e34c
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@

buildPythonPackage rec {
  pname = "nvchecker";
  version = "2.15.1";
  version = "2.16";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -30,12 +30,13 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "lilydjwg";
    repo = "nvchecker";
    rev = "v${version}";
    hash = "sha256-dK3rZCoSukCzPOFVectQiF6qplUuDBh9qyN8JL0+j20=";
    tag = "v${version}";
    hash = "sha256-HdL3BnjQZzKXtjhQqDst6dJH82g3BONFsGUnwzDMRDA=";
  };

  build-system = [ setuptools ];

  nativeBuildInputs = [
    setuptools
    docutils
    installShellFiles
  ];
@@ -76,11 +77,11 @@ buildPythonPackage rec {
    htmlparser = [ lxml ];
  };

  meta = with lib; {
  meta = {
    description = "New version checker for software";
    homepage = "https://github.com/lilydjwg/nvchecker";
    changelog = "https://github.com/lilydjwg/nvchecker/releases/tag/v${version}";
    license = licenses.mit;
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}