Unverified Commit e268a38c authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.pylint-venv: 3.0.3 -> 3.0.4 (#351688)

parents 480f8b78 67aae7e5
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -8,19 +8,19 @@

buildPythonPackage rec {
  pname = "pylint-venv";
  version = "3.0.3";
  format = "pyproject";
  version = "3.0.4";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "jgosmann";
    repo = pname;
    repo = "pylint-venv";
    rev = "refs/tags/v${version}";
    hash = "sha256-dsVEHJawsTNKVCVmeOa61wOU5GPeyzAU/eUDFrK9PPg=";
    hash = "sha256-dJWVfltze4zT0CowBZSn3alqR2Y8obKUCmO8Nfw+ahs=";
  };

  nativeBuildInputs = [ poetry-core ];
  build-system = [ poetry-core ];

  # Module has no tests
  doCheck = false;
@@ -31,7 +31,7 @@ buildPythonPackage rec {
    description = "Module to make pylint respect virtual environments";
    homepage = "https://github.com/jgosmann/pylint-venv/";
    changelog = "https://github.com/jgosmann/pylint-venv/blob/v${version}/CHANGES.md";
    license = with licenses; [ mit ];
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}