pythonPackages.pytest-cram: 0.1.1 -> 0.2.0

This fixes pytest-cram after the recent pytest upgrading broke it.
This commit is contained in:
Jaakko Luttinen 2018-02-06 20:55:20 +02:00
parent 2e4aded366
commit 44509195e5
No known key found for this signature in database
GPG Key ID: 7B1CE13152E6B964

View File

@ -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 = ''