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

28 lines
554 B
Nix
Raw Normal View History

{ lib
2018-01-22 15:08:37 +00:00
, fetchPypi
, buildPythonPackage
, pytest, pytestrunner
, isPy3k
}:
buildPythonPackage rec {
pname = "multidict";
2018-06-12 16:47:03 +00:00
version = "4.3.1";
2018-01-22 15:08:37 +00:00
src = fetchPypi {
inherit pname version;
2018-06-12 16:47:03 +00:00
sha256 = "5ba766433c30d703f6b2c17eb0b6826c6f898e5f58d89373e235f07764952314";
};
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 ];
};
}