2016-12-11 11:05:52 -08:00
|
|
|
{ lib
|
2018-01-22 07:08:37 -08:00
|
|
|
, fetchPypi
|
2016-12-11 11:05:52 -08:00
|
|
|
, buildPythonPackage
|
2021-01-16 02:32:03 -08:00
|
|
|
, pytestCheckHook, pytestrunner, pytestcov
|
2016-12-11 11:05:52 -08:00
|
|
|
, isPy3k
|
|
|
|
}:
|
|
|
|
|
2018-01-28 05:08:30 -08:00
|
|
|
buildPythonPackage rec {
|
2016-12-11 11:05:52 -08:00
|
|
|
pname = "multidict";
|
2021-01-16 02:32:03 -08:00
|
|
|
version = "5.1.0";
|
2016-12-11 11:05:52 -08:00
|
|
|
|
2018-01-22 07:08:37 -08:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-16 02:32:03 -08:00
|
|
|
sha256 = "25b4e5f22d3a37ddf3effc0710ba692cfc792c2b9edfb9c05aefe823256e84d5";
|
2016-12-11 11:05:52 -08:00
|
|
|
};
|
|
|
|
|
2021-01-16 02:32:03 -08:00
|
|
|
checkInputs = [ pytestCheckHook pytestrunner pytestcov ];
|
2016-12-11 11:05:52 -08:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2018-01-28 05:08:30 -08:00
|
|
|
meta = with lib; {
|
2016-12-11 11:05:52 -08:00
|
|
|
description = "Multidict implementation";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/aio-libs/multidict/";
|
2018-01-28 05:08:30 -08:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2016-12-11 11:05:52 -08:00
|
|
|
};
|
2017-10-31 08:21:13 -07:00
|
|
|
}
|