python3Packages.yarl: 1.0.0 -> 1.1.0

This commit is contained in:
Robert Schütz 2018-01-22 17:09:13 +01:00 committed by adisbladis
parent 7490d4d698
commit efbe08a2da
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5

View File

@ -1,4 +1,4 @@
{ lib { stdenv
, fetchPypi , fetchPypi
, buildPythonPackage , buildPythonPackage
, multidict , multidict
@ -9,19 +9,20 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "yarl"; pname = "yarl";
version = "1.0.0"; version = "1.1.0";
name = "${pname}-${version}";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "5ea610467a04d99bfc8878186330b28859eafc6ca589cdd24ba6fb7234c4b011"; sha256 = "162630v7f98l27h11msk9416lqwm2mpgxh4s636594nlbfs9by3a";
}; };
checkInputs = [ pytest pytestrunner ]; checkInputs = [ pytest pytestrunner ];
propagatedBuildInputs = [ multidict idna ]; propagatedBuildInputs = [ multidict idna ];
meta = { meta = with stdenv.lib; {
description = "Yet another URL library"; description = "Yet another URL library";
homepage = https://github.com/aio-libs/yarl/; homepage = https://github.com/aio-libs/yarl/;
license = lib.licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
}; };
} }