python.pkgs.betamax-matchers: 0.3.0 -> 0.4.0

This commit is contained in:
Joerg Thalheim 2017-11-07 13:00:05 +00:00
parent 5413be5645
commit b71500ef5a
2 changed files with 22 additions and 17 deletions

View File

@ -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 ];
};
}

View File

@ -1311,24 +1311,8 @@ in {
}; };
}; };
betamax-matchers = buildPythonPackage rec { betamax-matchers = callPackage ../development/python-modules/betamax-matchers { };
name = "betamax-matchers-${version}";
version = "0.3.0";
src = pkgs.fetchurl {
url = "mirror://pypi/b/betamax-matchers/${name}.tar.gz";
sha256 = "039kvqsdcvvlfxjc3n1x2xvjg6qkqbql0p7rc4z7bnxm9kcm88la";
};
buildInputs = with self; [ 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 ];
};
};
betamax-serializers = callPackage ../development/python-modules/betamax-serializers { }; betamax-serializers = callPackage ../development/python-modules/betamax-serializers { };
bibtexparser = callPackage ../development/python-modules/bibtexparser { }; bibtexparser = callPackage ../development/python-modules/bibtexparser { };