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

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "kaitaistruct";
  version = "0.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d1d17c7f6839b3d28fc22b21295f787974786c2201e8788975e72e2a1d109ff5";
  };

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