python.pkgs.kaitaistruct: 0.6 -> 0.7

This commit is contained in:
Joerg Thalheim
2017-11-02 23:34:11 +00:00
parent fd261eefbd
commit 206a3c7653
2 changed files with 19 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, kaitaistruct, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "kaitaistruct";
version = "0.7";
src = fetchPypi {
inherit pname version;
sha256 = "19j3snmr0qbd48f7yd3cc21ffv13dahf8ys591dnalbhvnkar71i";
};
meta = with stdenv.lib; {
description = "Kaitai Struct: runtime library for Python";
homepage = "https://github.com/kaitai-io/kaitai_struct_python_runtime";
license = licenses.mit;
};
}