2016-12-11 19:05:52 +00:00
|
|
|
{ lib
|
2018-01-22 15:08:37 +00:00
|
|
|
, fetchPypi
|
2016-12-11 19:05:52 +00:00
|
|
|
, buildPythonPackage
|
2018-11-04 16:17:40 +00:00
|
|
|
, pytest, pytestrunner, pytestcov
|
2016-12-11 19:05:52 +00:00
|
|
|
, isPy3k
|
2019-10-17 08:19:21 +01:00
|
|
|
, isPy38
|
2016-12-11 19:05:52 +00:00
|
|
|
}:
|
|
|
|
|
2018-01-28 13:08:30 +00:00
|
|
|
buildPythonPackage rec {
|
2016-12-11 19:05:52 +00:00
|
|
|
pname = "multidict";
|
2020-05-09 11:01:52 +01:00
|
|
|
version = "4.7.5";
|
2016-12-11 19:05:52 +00:00
|
|
|
|
2018-01-22 15:08:37 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 11:01:52 +01:00
|
|
|
sha256 = "aee283c49601fa4c13adc64c09c978838a7e812f85377ae130a24d7198c0331e";
|
2016-12-11 19:05:52 +00:00
|
|
|
};
|
|
|
|
|
2018-11-04 16:17:40 +00:00
|
|
|
checkInputs = [ pytest pytestrunner pytestcov ];
|
2016-12-11 19:05:52 +00:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
2019-10-17 08:19:21 +01:00
|
|
|
# pickle files needed for 3.8 https://github.com/aio-libs/multidict/pull/363
|
|
|
|
doCheck = !isPy38;
|
2016-12-11 19:05:52 +00:00
|
|
|
|
2018-01-28 13:08:30 +00:00
|
|
|
meta = with lib; {
|
2016-12-11 19:05:52 +00:00
|
|
|
description = "Multidict implementation";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/aio-libs/multidict/";
|
2018-01-28 13:08:30 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
2016-12-11 19:05:52 +00:00
|
|
|
};
|
2017-10-31 15:21:13 +00:00
|
|
|
}
|