pythonPackages.covCore: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 19:49:26 +02:00
committed by Frederik Rietdijk
parent 9b0e266249
commit a7b6d5c960
2 changed files with 18 additions and 11 deletions

View File

@@ -0,0 +1,17 @@
{ stdenv, buildPythonPackage, fetchPypi, coverage }:
buildPythonPackage rec {
pname = "cov-core";
version = "1.15.0";
src = fetchPypi {
inherit pname version;
sha256 = "0k3np9ymh06yv1ib96sb6wfsxjkqhmik8qfsn119vnhga9ywc52a";
};
propagatedBuildInputs = [ coverage ];
meta = with stdenv.lib; {
description = "Plugin core for use by pytest-cov, nose-cov and nose2-cov";
};
}