Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9c534caef4cb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 70cf5ea965e1
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 23, 2018

  1. python3Packages.yarl: 1.0.0 -> 1.1.0

    Robert Schütz authored and adisbladis committed Jan 23, 2018
    Copy the full SHA
    efbe08a View commit details
  2. Merge pull request #34147 from dotlambda/yarl

    python3Packages.yarl: 1.0.0 -> 1.1.0
    adisbladis authored Jan 23, 2018
    Copy the full SHA
    70cf5ea View commit details
Showing with 8 additions and 7 deletions.
  1. +8 −7 pkgs/development/python-modules/yarl/default.nix
15 changes: 8 additions & 7 deletions pkgs/development/python-modules/yarl/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
}