depot/third_party/nixpkgs/pkgs/development/python-modules/brotlipy/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

36 lines
No EOL
657 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, cffi
, enum34
, construct
, pytest
, hypothesis
}:
buildPythonPackage rec {
pname = "brotlipy";
version = "0.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "36def0b859beaf21910157b4c33eb3b06d8ce459c942102f16988cca6ea164df";
};
propagatedBuildInputs = [ cffi enum34 construct ];
checkInputs = [ pytest hypothesis ];
checkPhase = ''
py.test
'';
# Missing test files
doCheck = false;
meta = {
description = "Python bindings for the reference Brotli encoder/decoder";
homepage = "https://github.com/python-hyper/brotlipy/";
license = lib.licenses.mit;
};
}