My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/brotlipy/default.nix

38 lines
701 B

{ 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 ];
propagatedNativeBuildInputs = [ cffi ];
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;
};
}