nixpkgs/pkgs/development/python-modules/kaitaistruct/default.nix

18 lines
451 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
2017-11-02 23:34:11 +00:00
buildPythonPackage rec {
pname = "kaitaistruct";
version = "0.9";
2017-11-02 23:34:11 +00:00
src = fetchPypi {
inherit pname version;
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;
};
}