summary refs log tree commit diff
path: root/pkgs/development/python-modules/coveralls
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-04-26 19:35:22 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-04-26 19:49:48 +0200
commit87ce1e73a5e032b1b6874266fb4086f9809a97b9 (patch)
tree096cf526a1af06c4cb52f7d9e4a6dae9bfbeacf9 /pkgs/development/python-modules/coveralls
parent47403cf3866c1bb5498b7fe9f1758f379d9d58ab (diff)
downloadnixpkgs-87ce1e73a5e032b1b6874266fb4086f9809a97b9.tar
nixpkgs-87ce1e73a5e032b1b6874266fb4086f9809a97b9.tar.gz
nixpkgs-87ce1e73a5e032b1b6874266fb4086f9809a97b9.tar.bz2
nixpkgs-87ce1e73a5e032b1b6874266fb4086f9809a97b9.tar.lz
nixpkgs-87ce1e73a5e032b1b6874266fb4086f9809a97b9.tar.xz
nixpkgs-87ce1e73a5e032b1b6874266fb4086f9809a97b9.tar.zst
nixpkgs-87ce1e73a5e032b1b6874266fb4086f9809a97b9.zip
pythonPackages.coveralls: init at 1.1
Diffstat (limited to 'pkgs/development/python-modules/coveralls')
-rw-r--r--pkgs/development/python-modules/coveralls/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/coveralls/default.nix b/pkgs/development/python-modules/coveralls/default.nix
new file mode 100644
index 00000000000..d2c621de43c
--- /dev/null
+++ b/pkgs/development/python-modules/coveralls/default.nix
@@ -0,0 +1,35 @@
+{ buildPythonPackage
+, lib
+, fetchurl
+, pythonPackages
+}:
+
+let
+  pname = "coveralls";
+  version = "1.1";
+in buildPythonPackage rec {
+  name = "${pname}-${version}";
+
+  src = fetchurl {
+    url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
+    sha256 = "0238hgdwbvriqxrj22zwh0rbxnhh9c6hh75i39ll631vq62h65il";
+  };
+
+  buildInputs = with pythonPackages; [
+    coverage
+    docopt
+    requests
+  ];
+  propagatedBuildInputs = [];
+
+  # Tests in neither the archive nor the repo
+  doCheck = false;
+
+  meta = {
+    description = "py.test plugin to store test expectations and mark tests based on them";
+    homepage = https://github.com/gsnedders/pytest-expect;
+    license = lib.licenses.mit;
+  };
+}
+
+