diff_cover: init at 1.0.2
This commit is contained in:
parent
a451f97d2f
commit
16cc4ff070
36
pkgs/development/python-modules/diff_cover/default.nix
Normal file
36
pkgs/development/python-modules/diff_cover/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, jinja2, jinja2_pluralize, pygments,
|
||||
six, inflect, mock, nose, coverage, pycodestyle, flake8, pyflakes, git,
|
||||
pylint, pydocstyle, fetchpatch }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "diff_cover";
|
||||
version = "1.0.2";
|
||||
|
||||
preCheck = ''
|
||||
export LC_ALL=en_US.UTF-8;
|
||||
'';
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1wbp0kfv2mjxwnq2jlqmwvb71fywwc4x4azxi7ll5dll6nhjyd61";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
name = "tests-fix.patch";
|
||||
url = "https://github.com/Bachmann1234/diff-cover/commit/85c30959c8ed2aa3848f400095a2418f15bb7777.patch";
|
||||
sha256 = "0xni4syrxww9kdv8495f416vqgfdys4w2hgf5rdi35hy3ybfslh0";
|
||||
})
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ jinja2 jinja2_pluralize pygments six inflect ];
|
||||
|
||||
checkInputs = [ mock nose coverage pycodestyle flake8 pyflakes pylint pydocstyle git ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Automatically find diff lines that need test coverage";
|
||||
homepage = https://github.com/Bachmann1234/diff-cover;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ dzabraev ];
|
||||
};
|
||||
}
|
@ -205,6 +205,8 @@ in {
|
||||
|
||||
dkimpy = callPackage ../development/python-modules/dkimpy { };
|
||||
|
||||
diff_cover = callPackage ../development/python-modules/diff_cover { };
|
||||
|
||||
emcee = callPackage ../development/python-modules/emcee { };
|
||||
|
||||
email_validator = callPackage ../development/python-modules/email-validator { };
|
||||
|
Loading…
Reference in New Issue
Block a user