summary refs log tree commit diff
path: root/pkgs/development/tools/remarshal
diff options
context:
space:
mode:
authorPascal Bach <pascal.bach@nextrem.ch>2018-01-07 14:17:49 +0100
committerRobin Gloster <mail@glob.in>2018-01-07 15:58:54 +0100
commitd321f91fa1ead38a14a733bf310ff786a0179f7b (patch)
tree923d219b5b941f86fe70a9811646a3ee0fc9628e /pkgs/development/tools/remarshal
parent8d86d2d7ef006c58578ad08d67c43988d3ebfe9e (diff)
downloadnixlib-d321f91fa1ead38a14a733bf310ff786a0179f7b.tar
nixlib-d321f91fa1ead38a14a733bf310ff786a0179f7b.tar.gz
nixlib-d321f91fa1ead38a14a733bf310ff786a0179f7b.tar.bz2
nixlib-d321f91fa1ead38a14a733bf310ff786a0179f7b.tar.lz
nixlib-d321f91fa1ead38a14a733bf310ff786a0179f7b.tar.xz
nixlib-d321f91fa1ead38a14a733bf310ff786a0179f7b.tar.zst
nixlib-d321f91fa1ead38a14a733bf310ff786a0179f7b.zip
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.
Diffstat (limited to 'pkgs/development/tools/remarshal')
-rw-r--r--pkgs/development/tools/remarshal/default.nix4
-rw-r--r--pkgs/development/tools/remarshal/deps.nix20
2 files changed, 2 insertions, 22 deletions
diff --git a/pkgs/development/tools/remarshal/default.nix b/pkgs/development/tools/remarshal/default.nix
index ac4a39f06920..baba4fd75ea9 100644
--- a/pkgs/development/tools/remarshal/default.nix
+++ b/pkgs/development/tools/remarshal/default.nix
@@ -2,13 +2,13 @@
 
 pythonPackages.buildPythonApplication rec {
   name = "remarshal-${version}";
-  version = "0.6.0";
+  version = "0.7.0";
 
   src = fetchFromGitHub {
     owner  = "dbohdan";
     repo   = "remarshal";
     rev    = "v${version}";
-    sha256 = "0jslawpzghv3chamrfddnyn5p5068kjxy8d38fxvi5h06qgfb4wp";
+    sha256 = "1wsgvzfp40lvly7nyyhv9prip4vi32rfc8kdji587jpw28zc1dfb";
   };
 
   propagatedBuildInputs = with pythonPackages; [
diff --git a/pkgs/development/tools/remarshal/deps.nix b/pkgs/development/tools/remarshal/deps.nix
deleted file mode 100644
index 32f9f6eb0bb5..000000000000
--- a/pkgs/development/tools/remarshal/deps.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-[
-  {
-    goPackagePath = "gopkg.in/yaml.v2";
-    fetch = {
-      type = "git";
-      url = "https://gopkg.in/yaml.v2";
-      rev = "a83829b6f1293c91addabc89d0571c246397bbf4";
-      sha256 = "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh";
-    };
-  }
-  {
-    goPackagePath = "github.com/BurntSushi/toml";
-    fetch = {
-      type = "git";
-      url = "https://github.com/BurntSushi/toml";
-      rev = "056c9bc7be7190eaa7715723883caffa5f8fa3e4";
-      sha256 = "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw";
-    };
-  }
-]