pythonPackages.codecov: init at 2.0.9 (#27018)
* pythonPackages.codecov: init at 2.0.9 * Update default.nix
This commit is contained in:
parent
1336fde8ce
commit
753aab1494
26
pkgs/development/python-modules/codecov/default.nix
Normal file
26
pkgs/development/python-modules/codecov/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, requests, coverage, unittest2 }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "codecov";
|
||||||
|
version = "2.0.9";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "037h4dcl8xshlq3rj8409p11rpgnyqrhlhfq8j34s94nm0n1h76v";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ unittest2 ]; # Tests only
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests coverage ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
sed -i 's/, "argparse"//' setup.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Python report uploader for Codecov";
|
||||||
|
homepage = https://codecov.io/;
|
||||||
|
license = stdenv.lib.licenses.asl20;
|
||||||
|
};
|
||||||
|
}
|
@ -3809,6 +3809,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
codecov = callPackage ../development/python-modules/codecov {};
|
||||||
|
|
||||||
cogapp = buildPythonPackage rec {
|
cogapp = buildPythonPackage rec {
|
||||||
version = "2.3";
|
version = "2.3";
|
||||||
name = "cogapp-${version}";
|
name = "cogapp-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user