aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/diff_cover
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-10-05 12:43:18 +0000
committerKatharina Fey <kookie@spacekookie.de>2019-10-05 12:44:52 +0000
commitcf85056ba64caf3267d43255ef4a1243e9c8ee3b (patch)
tree3051519e9c8275b870aac43f80af875715c9d124 /nixpkgs/pkgs/development/python-modules/diff_cover
parent1148b1d122bc03e9a3665856c9b7bb96bd4e3994 (diff)
parent2436c27541b2f52deea3a4c1691216a02152e729 (diff)
Add 'nixpkgs/' from commit '2436c27541b2f52deea3a4c1691216a02152e729'
git-subtree-dir: nixpkgs git-subtree-mainline: 1148b1d122bc03e9a3665856c9b7bb96bd4e3994 git-subtree-split: 2436c27541b2f52deea3a4c1691216a02152e729
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/diff_cover')
-rw-r--r--nixpkgs/pkgs/development/python-modules/diff_cover/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/diff_cover/default.nix b/nixpkgs/pkgs/development/python-modules/diff_cover/default.nix
new file mode 100644
index 00000000000..57f0a1ef238
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/diff_cover/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, buildPythonPackage, fetchPypi, jinja2, jinja2_pluralize, pygments,
+ six, inflect, mock, nose, coverage, pycodestyle, flake8, pyflakes, git,
+ pylint, pydocstyle, fetchpatch, glibcLocales }:
+
+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 glibcLocales ];
+
+ 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 ];
+ };
+}