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: fc451835f66f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 915d58ba7cbb
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Mar 30, 2020

  1. python3Packages.subunit: fix build and add tests

    Jonathan Ringer committed Mar 30, 2020
    Copy the full SHA
    915d58b View commit details
Showing with 25 additions and 12 deletions.
  1. +22 −11 pkgs/development/python-modules/subunit/default.nix
  2. +3 −1 pkgs/top-level/python-packages.nix
33 changes: 22 additions & 11 deletions pkgs/development/python-modules/subunit/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,33 @@
{ buildPythonPackage
, pkgs
, testtools
# pkgs dependencies
, check
, cppunit
, pkg-config
, subunit

# python dependencies
, fixtures
, hypothesis
, pytest
, testscenarios
, testtools
}:

buildPythonPackage {
name = pkgs.subunit.name;
src = pkgs.subunit.src;
inherit (subunit) name src meta;

nativeBuildInputs = [ pkg-config ];
buildInputs = [ check cppunit ];
propagatedBuildInputs = [ testtools ];
checkInputs = [ testscenarios ];
nativeBuildInputs = [ pkgs.pkgconfig ];
buildInputs = [ pkgs.check pkgs.cppunit ];

patchPhase = ''
sed -i 's/version=VERSION/version="${pkgs.subunit.version}"/' setup.py
checkInputs = [ testscenarios hypothesis fixtures pytest ];
# ignore tests which call shell code, or call methods which haven't been implemented
checkPhase = ''
pytest python/subunit \
--ignore=python/subunit/tests/test_{output_filter,test_protocol{,2}}.py
'';

meta = pkgs.subunit.meta;

patchPhase = ''
sed -i 's/version=VERSION/version="${subunit.version}"/' setup.py
'';
}
4 changes: 3 additions & 1 deletion pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -6158,7 +6158,9 @@ in {

subdownloader = callPackage ../development/python-modules/subdownloader { };

subunit = callPackage ../development/python-modules/subunit { };
subunit = callPackage ../development/python-modules/subunit {
inherit (pkgs) subunit pkg-config cppunit check;
};

sure = callPackage ../development/python-modules/sure { };