1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/yarl/default.nix

29 lines
589 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";
2020-08-16 18:31:20 +01:00
version = "1.5.1";
2018-01-22 16:09:13 +00:00
2017-12-30 11:28:47 +00:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:20 +01:00
sha256 = "c22c75b5f394f3d47105045ea551e08a3e804dc7e01b37800ca35b58f856c3d6";
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
}