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: 44f24a1b8c46
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 31adf332170f
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 16, 2018

  1. pythonPackages.nose-cov: init at 1.6

    Module for coverage reports with Python using nosetests.
    Ma27 committed Nov 16, 2018
    Copy the full SHA
    c59c9a3 View commit details

Commits on Nov 17, 2018

  1. Merge pull request #50473 from Ma27/package-python-nose-cov

    pythonPackages.nose-cov: init at 1.6
    Mic92 authored Nov 17, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    31adf33 View commit details
Showing with 22 additions and 0 deletions.
  1. +20 −0 pkgs/development/python-modules/nose-cov/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
20 changes: 20 additions & 0 deletions pkgs/development/python-modules/nose-cov/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ buildPythonPackage, fetchPypi, lib, nose, covCore }:

buildPythonPackage rec {
pname = "nose-cov";
version = "1.6";

src = fetchPypi {
inherit pname version;
sha256 = "04j4fw01bv648gimqqj4z88606lcczbm1k326agcc74gb4sh7v4b";
};

propagatedBuildInputs = [ nose covCore ];

meta = with lib; {
homepage = https://pypi.org/project/nose-cov/;
license = licenses.mit;
description = "This plugin produces coverage reports. It also supports coverage of subprocesses.";
maintainers = with maintainers; [ ma27 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -2966,6 +2966,8 @@ in {

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

nose-cov = callPackage ../development/python-modules/nose-cov { };

nose-exclude = callPackage ../development/python-modules/nose-exclude { };

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