about summary refs log tree commit diff
path: root/pkgs/applications/version-management/peru
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-12-30 11:07:54 -0500
committerworldofpeace <worldofpeace@users.noreply.github.com>2018-12-30 11:09:24 -0500
commit56ccb6fd1b620ecf954dc59ddf7dce52a4823bba (patch)
tree9c1a7e4602bacced486cbf6b96384bd67a1dab3d /pkgs/applications/version-management/peru
parent1caff6fac23897c7b7579519c21f4e7606c59a1a (diff)
peru: python 3.3 and 3.4 support is deprecated
See: https://github.com/buildinspace/peru/commit/42e5dfdc4ea5389e0599047167c0135659e4640a
Diffstat (limited to 'pkgs/applications/version-management/peru')
-rw-r--r--pkgs/applications/version-management/peru/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/version-management/peru/default.nix b/pkgs/applications/version-management/peru/default.nix
index 2fd23d5766e32..8b68dddfceb41 100644
--- a/pkgs/applications/version-management/peru/default.nix
+++ b/pkgs/applications/version-management/peru/default.nix
@@ -1,9 +1,11 @@
 { stdenv, fetchFromGitHub, python3Packages }:
 
 python3Packages.buildPythonApplication rec {
-  name = "peru-${version}";
+  pname = "peru";
   version = "1.2.0";
 
+  disabled = python3Packages.pythonOlder "3.5";
+
   src = fetchFromGitHub {
     owner = "buildinspace";
     repo = "peru";