summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-12-31 14:13:21 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-12-31 14:13:21 +0100
commitc6b3be2e9a3af01ab3a8a8f9b4508e6a276ebcf9 (patch)
treec1b8f991ab83d2cbe855d020cd6eed61051df94a /pkgs
parent562ac8e23734a4df77bfa100e974c7acb54172e5 (diff)
downloadnixpkgs-c6b3be2e9a3af01ab3a8a8f9b4508e6a276ebcf9.tar
nixpkgs-c6b3be2e9a3af01ab3a8a8f9b4508e6a276ebcf9.tar.gz
nixpkgs-c6b3be2e9a3af01ab3a8a8f9b4508e6a276ebcf9.tar.bz2
nixpkgs-c6b3be2e9a3af01ab3a8a8f9b4508e6a276ebcf9.tar.lz
nixpkgs-c6b3be2e9a3af01ab3a8a8f9b4508e6a276ebcf9.tar.xz
nixpkgs-c6b3be2e9a3af01ab3a8a8f9b4508e6a276ebcf9.tar.zst
nixpkgs-c6b3be2e9a3af01ab3a8a8f9b4508e6a276ebcf9.zip
watson: 1.4.0 -> 1.5.2, fix build with patch
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/office/watson/default.nix27
1 files changed, 18 insertions, 9 deletions
diff --git a/pkgs/applications/office/watson/default.nix b/pkgs/applications/office/watson/default.nix
index a1fcfd5de70..e0f0c58b450 100644
--- a/pkgs/applications/office/watson/default.nix
+++ b/pkgs/applications/office/watson/default.nix
@@ -1,13 +1,14 @@
-{ stdenv, pythonPackages }:
+{ stdenv, pythonPackages, fetchpatch }:
 
-pythonPackages.buildPythonApplication rec {
+with pythonPackages;
+
+buildPythonApplication rec {
   pname = "td-watson";
-  name = "${pname}-${version}";
-  version = "1.4.0";
+  version = "1.5.2";
 
-  src = pythonPackages.fetchPypi {
+  src = fetchPypi {
     inherit version pname;
-    sha256 = "1py0g4990jmvq0dn7jasda7f10kzr41bix46hnbyc1rshjzc17hq";
+    sha256 = "6e03d44a9278807fe5245e9ed0943f13ffb88e11249a02655c84cb86260b27c8";
   };
 
   # uses tox, test invocation fails
@@ -15,8 +16,16 @@ pythonPackages.buildPythonApplication rec {
   checkPhase = ''
     py.test -vs tests
  '';
-  checkInputs = with pythonPackages; [ py pytest pytest-datafiles mock pytest-mock pytestrunner ];
-  propagatedBuildInputs = with pythonPackages; [ requests click arrow ];
+
+  patches = [
+    (fetchpatch {
+      url = https://github.com/TailorDev/Watson/commit/f5760c71cbc22de4e12ede8f6f7257515a9064d3.patch;
+      sha256 = "0s9h26915ilpbd0qhmvk77r3gmrsdrl5l7dqxj0l5q66fp0z6b0g";
+    })
+  ];
+
+  checkInputs = [ py pytest pytest-datafiles mock pytest-mock pytestrunner ];
+  propagatedBuildInputs = [ requests click arrow ];
 
   meta = with stdenv.lib; {
     homepage = https://tailordev.github.io/Watson/;
@@ -24,4 +33,4 @@ pythonPackages.buildPythonApplication rec {
     license = licenses.mit;
     maintainers = with maintainers; [ mguentner ] ;
   };
-}
\ No newline at end of file
+}