python.pkgs.kaitaistruct: 0.6 -> 0.7
This commit is contained in:
parent
fd261eefbd
commit
206a3c7653
18
pkgs/development/python-modules/kaitaistruct/default.nix
Normal file
18
pkgs/development/python-modules/kaitaistruct/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -13812,21 +13812,7 @@ in {
|
|||||||
|
|
||||||
pecan = callPackage ../development/python-modules/pecan { };
|
pecan = callPackage ../development/python-modules/pecan { };
|
||||||
|
|
||||||
kaitaistruct = buildPythonPackage rec {
|
kaitaistruct = callPackage ../development/python-modules/kaitaistruct { };
|
||||||
name = "kaitaistruct-${version}";
|
|
||||||
version = "0.6";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/k/kaitaistruct/${name}.tar.gz";
|
|
||||||
sha256 = "0rwcrlz7f2bwmypqa38pag492bp71wp1bhz51hsaynjjyr9knr12";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "Kaitai Struct: runtime library for Python";
|
|
||||||
homepage = "https://github.com/kaitai-io/kaitai_struct_python_runtime";
|
|
||||||
license = licenses.mit;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
Kajiki = buildPythonPackage rec {
|
Kajiki = buildPythonPackage rec {
|
||||||
name = "Kajiki-${version}";
|
name = "Kajiki-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user