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

17 lines
405 B
Nix
Raw Normal View History

2017-11-03 00:32:49 +01:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "hyperframe";
2019-02-14 08:37:17 +01:00
version = "5.2.0";
2017-11-03 00:32:49 +01:00
src = fetchPypi {
inherit pname version;
2019-02-14 08:37:17 +01:00
sha256 = "a9f5c17f2cc3c719b917c4f33ed1c61bd1f8dfac4b1bd23b7c80b3400971b41f";
2017-11-03 00:32:49 +01:00
};
meta = with stdenv.lib; {
description = "HTTP/2 framing layer for Python";
homepage = "http://hyper.rtfd.org/";
license = licenses.mit;
};
}