nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.lcov-cobertura: add missing build dependency setuptools_scm, fix build (#403700)

authored by

Robert Scott and committed by
GitHub
092ab720 bf012603

+11 -1
+11 -1
pkgs/development/python-modules/lcov-cobertura/default.nix
··· 4 4 fetchPypi, 5 5 pythonOlder, 6 6 setuptools, 7 + setuptools-scm, 7 8 distutils, 8 9 }: 9 10 ··· 20 19 hash = "sha256-76jiZPK93rt/UCTkrOErYz2dWQSLxkdCfR4blojItY8="; 21 20 }; 22 21 23 - build-system = [ setuptools ]; 22 + # https://github.com/eriwen/lcov-to-cobertura-xml/issues/63 23 + postPatch = '' 24 + substituteInPlace setup.cfg \ 25 + --replace-fail 'License :: OSI Approved :: Apache Software License' "" 26 + ''; 27 + 28 + build-system = [ 29 + setuptools 30 + setuptools-scm 31 + ]; 24 32 dependencies = [ distutils ]; 25 33 26 34 pythonImportsCheck = [ "lcov_cobertura" ];