python: wsproto: 0.12.0 -> 0.13.0

This commit is contained in:
Frederik Rietdijk 2019-02-14 08:37:33 +01:00
parent 79dc679873
commit 7382057ec4

View file

@ -1,14 +1,20 @@
{ buildPythonPackage, fetchPypi, h11, enum34 }: { buildPythonPackage, fetchPypi, h11, enum34, pytest }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "wsproto"; pname = "wsproto";
version = "0.12.0"; version = "0.13.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1fcb726d448f1b9bcbea884e26621af5ddd01d2d502941a024f4c727828b6009"; sha256 = "fd6020d825022247053400306448e161d8740bdd52e328e5553cd9eee089f705";
}; };
propagatedBuildInputs = [ h11 enum34 ]; propagatedBuildInputs = [ h11 enum34 ];
checkInputs = [ pytest ];
checkPhase = ''
py.test
'';
} }