depot/third_party/nixpkgs/pkgs/development/python-modules/multidict/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

27 lines
595 B
Nix

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