nixpkgs/pkgs/development/python-modules/multidict/default.nix
2018-12-03 16:50:38 +01:00

28 lines
575 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, pytest, pytestrunner, pytestcov
, isPy3k
}:
buildPythonPackage rec {
pname = "multidict";
version = "4.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "3c11e92c3dfc321014e22fb442bc9eb70e01af30d6ce442026b0c35723448c66";
};
checkInputs = [ pytest pytestrunner pytestcov ];
disabled = !isPy3k;
meta = with lib; {
description = "Multidict implementation";
homepage = https://github.com/aio-libs/multidict/;
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}