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

28 lines
542 B
Nix
Raw Normal View History

{ lib
2018-01-22 15:08:37 +00:00
, fetchPypi
, buildPythonPackage
, pytest, pytestrunner
, isPy3k
}:
buildPythonPackage rec {
pname = "multidict";
version = "4.1.0";
2018-01-22 15:08:37 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0liazqlyk2nmr82nhiw2z72j7bjqxaisifkj476msw140d4i4i7v";
};
checkInputs = [ pytest pytestrunner ];
disabled = !isPy3k;
meta = with lib; {
description = "Multidict implementation";
homepage = https://github.com/aio-libs/multidict/;
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}