summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-cram
diff options
context:
space:
mode:
authorJaakko Luttinen <jaakko.luttinen@iki.fi>2018-02-06 20:55:20 +0200
committerJaakko Luttinen <jaakko.luttinen@iki.fi>2018-02-06 21:49:44 +0200
commit44509195e5b9c21c6a1185703dc31724e36ddc05 (patch)
tree46328fd7a6341296e38a3c9c59ca4d58fda60d31 /pkgs/development/python-modules/pytest-cram
parent2e4aded366914d625a2f31208e8ac8548cb43a7e (diff)
downloadnixpkgs-44509195e5b9c21c6a1185703dc31724e36ddc05.tar
nixpkgs-44509195e5b9c21c6a1185703dc31724e36ddc05.tar.gz
nixpkgs-44509195e5b9c21c6a1185703dc31724e36ddc05.tar.bz2
nixpkgs-44509195e5b9c21c6a1185703dc31724e36ddc05.tar.lz
nixpkgs-44509195e5b9c21c6a1185703dc31724e36ddc05.tar.xz
nixpkgs-44509195e5b9c21c6a1185703dc31724e36ddc05.tar.zst
nixpkgs-44509195e5b9c21c6a1185703dc31724e36ddc05.zip
pythonPackages.pytest-cram: 0.1.1 -> 0.2.0
This fixes pytest-cram after the recent pytest upgrading broke it.
Diffstat (limited to 'pkgs/development/python-modules/pytest-cram')
-rw-r--r--pkgs/development/python-modules/pytest-cram/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pytest-cram/default.nix b/pkgs/development/python-modules/pytest-cram/default.nix
index fdd2b2316e2..4555479af43 100644
--- a/pkgs/development/python-modules/pytest-cram/default.nix
+++ b/pkgs/development/python-modules/pytest-cram/default.nix
@@ -1,8 +1,7 @@
 {lib, buildPythonPackage, fetchPypi, pytest, cram, bash, writeText}:
 
 buildPythonPackage rec {
-  name = "${pname}-${version}";
-  version = "0.1.1";
+  version = "0.2.0";
   pname = "pytest-cram";
 
   buildInputs = [ pytest ];
@@ -10,7 +9,8 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0ad05999iqzyjay9y5lc0cnd3jv8qxqlzsvxzp76shslmhrv0c4f";
+    sha256 = "006p5dr3q794sbwwmxmdls3nwq0fvnyrxxmc03pgq8n74chl71qn";
+    extension = "zip";
   };
 
   postPatch = ''