2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
2017-11-02 23:34:11 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "kaitaistruct";
|
2020-11-02 07:52:23 +00:00
|
|
|
version = "0.9";
|
2017-11-02 23:34:11 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-02 07:52:23 +00:00
|
|
|
sha256 = "3d5845817ec8a4d5504379cc11bd570b038850ee49c4580bc0998c8fb1d327ad";
|
2017-11-02 23:34:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Kaitai Struct: runtime library for Python";
|
|
|
|
homepage = "https://github.com/kaitai-io/kaitai_struct_python_runtime";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|