Merge pull request #21523 from peterhoeg/u/remarsh
remarshal: 0.3.0 -> 0.6.0
This commit is contained in:
commit
d57405568e
|
@ -1,20 +1,23 @@
|
||||||
{ lib, buildGoPackage, fetchFromGitHub }:
|
{ stdenv, pythonPackages, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
name = "remarshal-${rev}";
|
name = "remarshal-${version}";
|
||||||
rev = "0.3.0";
|
version = "0.6.0";
|
||||||
goPackagePath = "github.com/dbohdan/remarshal";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
rev = "v${rev}";
|
|
||||||
owner = "dbohdan";
|
owner = "dbohdan";
|
||||||
repo = "remarshal";
|
repo = "remarshal";
|
||||||
sha256 = "0lhsqca3lq3xvdwsmrngv4p6b7k2lkbfnxnk5qj6jdd5y7f4b496";
|
rev = "v${version}";
|
||||||
|
sha256 = "0jslawpzghv3chamrfddnyn5p5068kjxy8d38fxvi5h06qgfb4wp";
|
||||||
};
|
};
|
||||||
|
|
||||||
goDeps = ./deps.nix;
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
|
dateutil
|
||||||
|
pytoml
|
||||||
|
pyyaml
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Convert between TOML, YAML and JSON";
|
description = "Convert between TOML, YAML and JSON";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
homepage = https://github.com/dbohdan/remarshal;
|
homepage = https://github.com/dbohdan/remarshal;
|
||||||
|
|
|
@ -31653,6 +31653,28 @@ EOF
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pytoml = buildPythonPackage rec {
|
||||||
|
name = "pytoml-${version}";
|
||||||
|
version = "0.1.11";
|
||||||
|
|
||||||
|
checkPhase = "${python.interpreter} test/test.py";
|
||||||
|
|
||||||
|
# fetchgit used to ensure test submodule is available
|
||||||
|
src = pkgs.fetchgit {
|
||||||
|
url = "${meta.homepage}.git";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
sha256 = "1jiw04zk9ccynr8kb1vqh9r1p2kh0al7g7b1f94911iazg7dgs9j";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A TOML parser/writer for Python";
|
||||||
|
homepage = https://github.com/avakar/pytoml;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
ROPGadget = buildPythonPackage rec {
|
ROPGadget = buildPythonPackage rec {
|
||||||
name = "ROPGadget-5.4";
|
name = "ROPGadget-5.4";
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
|
|
Loading…
Reference in New Issue