summary refs log tree commit diff
path: root/pkgs/development/python-modules/kaitaistruct/default.nix
blob: 866042b6942ce950c9166c4f7c82bc6bc1c2b6c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "kaitaistruct";
  version = "0.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "3d5845817ec8a4d5504379cc11bd570b038850ee49c4580bc0998c8fb1d327ad";
  };

  meta = with lib; {
    description = "Kaitai Struct: runtime library for Python";
    homepage = "https://github.com/kaitai-io/kaitai_struct_python_runtime";
    license = licenses.mit;
  };
}