about summary refs log tree commit diff
path: root/pkgs/servers/pinnwand
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-01-11 06:34:42 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-01-11 10:33:03 +0100
commit00ea65155e64bfe89d875d05c6a348c5b46b5dac (patch)
tree9f21ef69c8d79b183c8777edfd7cac3f65b4c8f7 /pkgs/servers/pinnwand
parenta2e741bd3802b8d9c5f38cb0bd794219a5593ff9 (diff)
steck: 0.6.0 -> 0.7.0
Diffstat (limited to 'pkgs/servers/pinnwand')
-rw-r--r--pkgs/servers/pinnwand/steck.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/servers/pinnwand/steck.nix b/pkgs/servers/pinnwand/steck.nix
index 90f7d6b49f563..8d44f8160d037 100644
--- a/pkgs/servers/pinnwand/steck.nix
+++ b/pkgs/servers/pinnwand/steck.nix
@@ -2,11 +2,11 @@
 
 python3Packages.buildPythonApplication rec {
   pname = "steck";
-  version = "0.6.0";
+  version = "0.7.0";
 
   src = python3Packages.fetchPypi {
     inherit pname version;
-    sha256 = "07gc5iwbyprb8nihnjjl2zd06z8p4nl3a3drzh9a8ny35ig1khq0";
+    sha256 = "1a3l427ibwck9zzzy1sp10hmjgminya08i4r9j4559qzy7lxghs1";
   };
 
   propagatedBuildInputs = with python3Packages; [
@@ -19,6 +19,9 @@ python3Packages.buildPythonApplication rec {
     toml
   ];
 
+  # tests are not in pypi package
+  doCheck = false;
+
   passthru.tests = nixosTests.pinnwand;
 
   meta = with lib; {