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";
2018-02-17 13:20:38 +00:00
version = "0.8";
2017-11-02 23:34:11 +00:00
src = fetchPypi {
inherit pname version;
2018-02-17 13:20:38 +00:00
sha256 = "d1d17c7f6839b3d28fc22b21295f787974786c2201e8788975e72e2a1d109ff5";
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;
};
}