summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJoerg Thalheim <joerg@thalheim.io>2017-11-07 13:00:05 +0000
committerJoerg Thalheim <joerg@thalheim.io>2017-11-07 13:17:45 +0000
commitb71500ef5ae25a8ae7a445302dfeb1ca3b71b415 (patch)
treecf51cf40259341e4173b80e85acf010cdd492c4c /pkgs/development
parent5413be5645d688a2dd56c024a796e8f213bc657c (diff)
downloadnixpkgs-b71500ef5ae25a8ae7a445302dfeb1ca3b71b415.tar
nixpkgs-b71500ef5ae25a8ae7a445302dfeb1ca3b71b415.tar.gz
nixpkgs-b71500ef5ae25a8ae7a445302dfeb1ca3b71b415.tar.bz2
nixpkgs-b71500ef5ae25a8ae7a445302dfeb1ca3b71b415.tar.lz
nixpkgs-b71500ef5ae25a8ae7a445302dfeb1ca3b71b415.tar.xz
nixpkgs-b71500ef5ae25a8ae7a445302dfeb1ca3b71b415.tar.zst
nixpkgs-b71500ef5ae25a8ae7a445302dfeb1ca3b71b415.zip
python.pkgs.betamax-matchers: 0.3.0 -> 0.4.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/betamax-matchers/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/betamax-matchers/default.nix b/pkgs/development/python-modules/betamax-matchers/default.nix
new file mode 100644
index 00000000000..762154ac45d
--- /dev/null
+++ b/pkgs/development/python-modules/betamax-matchers/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, betamax, requests_toolbelt }:
+
+buildPythonPackage rec {
+  pname = "betamax-matchers";
+  version = "0.4.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "07qpwjyq2i2aqhz5iwghnj4pqr2ys5n45v1vmpcfx9r5mhwrsq43";
+  };
+
+  buildInputs = [ betamax requests_toolbelt ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/sigmavirus24/betamax_matchers;
+    description = "A group of experimental matchers for Betamax";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ pSub ];
+  };
+}