Commit a0e383d0 authored by Ben Siraphob's avatar Ben Siraphob
Browse files

python3Packages.colcon: 0.19.0 -> 0.20.1

parent 7de3233c
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -21,14 +21,14 @@

buildPythonPackage rec {
  pname = "colcon-core";
  version = "0.19.0";
  version = "0.20.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "colcon";
    repo = "colcon-core";
    tag = version;
    hash = "sha256-R/TVHPT305PwaVSisP0TtbgjCFBwCZkXOAgkYhCKpyY=";
    hash = "sha256-FV/G2FcnBgr7mUY/Jr+bVAdEfhHL9qAnpc92hpTfy7Y=";
  };

  build-system = [ setuptools ];
@@ -62,6 +62,8 @@ buildPythonPackage rec {
  pythonRemoveDeps = [
    # We use pytest-cov-stub instead (and it is not a runtime dependency anyways)
    "pytest-cov"
    # Upper bound on setuptools is too strict for nixpkgs
    "setuptools"
  ];

  meta = {