pythonPackages.covCore: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
9b0e266249
commit
a7b6d5c960
17
pkgs/development/python-modules/cov-core/default.nix
Normal file
17
pkgs/development/python-modules/cov-core/default.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user