python: wsproto: 0.12.0 -> 0.13.0
This commit is contained in:
parent
79dc679873
commit
7382057ec4
1 changed files with 9 additions and 3 deletions
|
@ -1,14 +1,20 @@
|
|||
{ buildPythonPackage, fetchPypi, h11, enum34 }:
|
||||
{ buildPythonPackage, fetchPypi, h11, enum34, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "wsproto";
|
||||
version = "0.12.0";
|
||||
version = "0.13.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1fcb726d448f1b9bcbea884e26621af5ddd01d2d502941a024f4c727828b6009";
|
||||
sha256 = "fd6020d825022247053400306448e161d8740bdd52e328e5553cd9eee089f705";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ h11 enum34 ];
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue