python.pkgs.brotlipy: move expression
This commit is contained in:
25
pkgs/development/python-modules/brotlipy/default.nix
Normal file
25
pkgs/development/python-modules/brotlipy/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, cffi
|
||||
, enum34
|
||||
, construct
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "brotlipy";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "10s2y19zywfkf3sksrw81czhva759aki0clld2pnnlgf64sz7016";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ cffi enum34 construct ];
|
||||
|
||||
meta = {
|
||||
description = "Python bindings for the reference Brotli encoder/decoder";
|
||||
homepage = "https://github.com/python-hyper/brotlipy/";
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user