Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7c162b09393c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1cb30eb79890
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 7, 2020

  1. python2Packages.unittest-sml-reporting: disable py2

    ```
    builder for '/nix/store/5hqb6vylvzjj92db46wrzd3mp56vv1ms-python2.7-unittest-xml-reporting-3.0.2.drv' failed with exit code 1; last 10 log lines:
      no configure script, doing nothing
      building
      Executing setuptoolsBuildPhase
      Traceback (most recent call last):
        File "nix_run_setup", line 8, in <module>
          exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec'))
        File "setup.py", line 21, in <module>
          raise RuntimeError('This version requires Python 3.5+')  # pragma: no cover
      RuntimeError: This version requires Python 3.5+
      builder for '/nix/store/5hqb6vylvzjj92db46wrzd3mp56vv1ms-python2.7-unittest-xml-reporting-3.0.2.drv' failed with exi
    ```
    Jonathan Ringer committed Jul 7, 2020
    Copy the full SHA
    1cb30eb View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 pkgs/development/python-modules/unittest-xml-reporting/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{lib, fetchPypi, buildPythonPackage, six}:
{lib, fetchPypi, buildPythonPackage, isPy27, six}:

buildPythonPackage rec {
pname = "unittest-xml-reporting";
version = "3.0.2";
disabled = isPy27;

propagatedBuildInputs = [six];