about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-02-12 23:10:44 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-02-12 23:12:57 +0100
commit943c8909b5d52f1239ab73c5706bd817e768227b (patch)
treeb4ff662502253fddeda4e7c2b398f7815fc82e02 /pkgs
parent6c53ffa50293fdbf4eacb085e90101f966191de1 (diff)
downloadnixlib-943c8909b5d52f1239ab73c5706bd817e768227b.tar
nixlib-943c8909b5d52f1239ab73c5706bd817e768227b.tar.gz
nixlib-943c8909b5d52f1239ab73c5706bd817e768227b.tar.bz2
nixlib-943c8909b5d52f1239ab73c5706bd817e768227b.tar.lz
nixlib-943c8909b5d52f1239ab73c5706bd817e768227b.tar.xz
nixlib-943c8909b5d52f1239ab73c5706bd817e768227b.tar.zst
nixlib-943c8909b5d52f1239ab73c5706bd817e768227b.zip
Revert "papis: use python36"
This reverts commit 07664bcbe49b84c67cdaec079fe70ab41d3d8829.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/papis/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/papis/default.nix b/pkgs/tools/misc/papis/default.nix
index 8bccfccfeabf..282d64befb7f 100644
--- a/pkgs/tools/misc/papis/default.nix
+++ b/pkgs/tools/misc/papis/default.nix
@@ -1,8 +1,8 @@
 { lib, fetchFromGitHub, fetchpatch
-, python36, xdg_utils
+, python3, xdg_utils
 }:
 
-python36.pkgs.buildPythonApplication rec {
+python3.pkgs.buildPythonApplication rec {
   pname = "papis";
   version = "0.7.5";
 
@@ -20,7 +20,7 @@ python36.pkgs.buildPythonApplication rec {
     sha256 = "0cmagfdaaml1pxhnxggifpb47z5g1p231qywnvnqpd3dm93382w1";
   };
 
-  propagatedBuildInputs = with python36.pkgs; [
+  propagatedBuildInputs = with python3.pkgs; [
     click requests filetype pyparsing configparser
     arxiv2bib pyyaml chardet beautifulsoup4 prompt_toolkit
     bibtexparser python-slugify pyparser pylibgen
@@ -33,7 +33,7 @@ python36.pkgs.buildPythonApplication rec {
     install -Dt "$out/etc/bash_completion.d" scripts/shell_completion/build/bash/papis
   '';
 
-  checkInputs = (with python36.pkgs; [
+  checkInputs = (with python3.pkgs; [
     pytest
   ]) ++ [
     xdg_utils