mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
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 { };
|
||||
|
||||
kaitaistruct = buildPythonPackage rec {
|
||||
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;
|
||||
};
|
||||
};
|
||||
kaitaistruct = callPackage ../development/python-modules/kaitaistruct { };
|
||||
|
||||
Kajiki = buildPythonPackage rec {
|
||||
name = "Kajiki-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user