nixpkgs/pkgs/development/python-modules/multidict/default.nix
2018-01-28 14:08:30 +01:00

30 lines
594 B
Nix

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