lol

remarshal: 0.6.0 -> 0.7.0

The checks in 0.6.0 did no longer work with the updated dependencies.
Updating to 0.7.0 fixes the issue.

The deps.nix file was used for the go version and is no longer required
as remarshal is now written in python.

authored by

Pascal Bach and committed by
Robin Gloster
d321f91f 8d86d2d7

+2 -22
+2 -2
pkgs/development/tools/remarshal/default.nix
··· 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 4 name = "remarshal-${version}"; 5 - version = "0.6.0"; 5 + version = "0.7.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dbohdan"; 9 9 repo = "remarshal"; 10 10 rev = "v${version}"; 11 - sha256 = "0jslawpzghv3chamrfddnyn5p5068kjxy8d38fxvi5h06qgfb4wp"; 11 + sha256 = "1wsgvzfp40lvly7nyyhv9prip4vi32rfc8kdji587jpw28zc1dfb"; 12 12 }; 13 13 14 14 propagatedBuildInputs = with pythonPackages; [
-20
pkgs/development/tools/remarshal/deps.nix
··· 1 - [ 2 - { 3 - goPackagePath = "gopkg.in/yaml.v2"; 4 - fetch = { 5 - type = "git"; 6 - url = "https://gopkg.in/yaml.v2"; 7 - rev = "a83829b6f1293c91addabc89d0571c246397bbf4"; 8 - sha256 = "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh"; 9 - }; 10 - } 11 - { 12 - goPackagePath = "github.com/BurntSushi/toml"; 13 - fetch = { 14 - type = "git"; 15 - url = "https://github.com/BurntSushi/toml"; 16 - rev = "056c9bc7be7190eaa7715723883caffa5f8fa3e4"; 17 - sha256 = "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw"; 18 - }; 19 - } 20 - ]