nixpkgs/pkgs/development/python-modules/yarl/default.nix

29 lines
587 B
Nix
Raw Normal View History

2018-01-22 16:09:13 +00:00
{ stdenv
2017-12-30 11:28:47 +00:00
, fetchPypi
2016-12-11 19:05:40 +00:00
, buildPythonPackage
, multidict
, pytestrunner
, pytest
2017-12-30 11:28:47 +00:00
, idna
2016-12-11 19:05:40 +00:00
}:
2017-12-30 11:28:47 +00:00
buildPythonPackage rec {
2016-12-11 19:05:40 +00:00
pname = "yarl";
2018-06-21 06:37:19 +01:00
version = "1.2.6";
2018-01-22 16:09:13 +00:00
2017-12-30 11:28:47 +00:00
src = fetchPypi {
inherit pname version;
2018-06-21 06:37:19 +01:00
sha256 = "c8cbc21bbfa1dd7d5386d48cc814fe3d35b80f60299cdde9279046f399c3b0d8";
2016-12-11 19:05:40 +00:00
};
2017-12-30 11:28:47 +00:00
checkInputs = [ pytest pytestrunner ];
propagatedBuildInputs = [ multidict idna ];
2016-12-11 19:05:40 +00:00
2018-01-22 16:09:13 +00:00
meta = with stdenv.lib; {
2016-12-11 19:05:40 +00:00
description = "Yet another URL library";
homepage = https://github.com/aio-libs/yarl/;
2018-01-22 16:09:13 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
2016-12-11 19:05:40 +00:00
};
2018-01-22 16:09:13 +00:00
}