From efbe08a2da5582c0f31be3336c1e0875676cb48e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 22 Jan 2018 17:09:13 +0100 Subject: [PATCH] python3Packages.yarl: 1.0.0 -> 1.1.0 --- pkgs/development/python-modules/yarl/default.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/yarl/default.nix b/pkgs/development/python-modules/yarl/default.nix index fe6b806ab71..e40aa9d05f9 100644 --- a/pkgs/development/python-modules/yarl/default.nix +++ b/pkgs/development/python-modules/yarl/default.nix @@ -1,4 +1,4 @@ -{ lib +{ stdenv , fetchPypi , buildPythonPackage , multidict @@ -9,19 +9,20 @@ buildPythonPackage rec { pname = "yarl"; - version = "1.0.0"; - name = "${pname}-${version}"; + version = "1.1.0"; + src = fetchPypi { inherit pname version; - sha256 = "5ea610467a04d99bfc8878186330b28859eafc6ca589cdd24ba6fb7234c4b011"; + sha256 = "162630v7f98l27h11msk9416lqwm2mpgxh4s636594nlbfs9by3a"; }; checkInputs = [ pytest pytestrunner ]; propagatedBuildInputs = [ multidict idna ]; - meta = { + meta = with stdenv.lib; { description = "Yet another URL library"; homepage = https://github.com/aio-libs/yarl/; - license = lib.licenses.asl20; + license = licenses.asl20; + maintainers = with maintainers; [ dotlambda ]; }; -} \ No newline at end of file +}