Skip to content

Commit

Permalink
papis: use python36
Browse files Browse the repository at this point in the history
dateparser tests fail on python37:
#52766
  • Loading branch information
Robert Schütz committed Jan 31, 2019
1 parent 4de602e commit 0e28815
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/tools/misc/papis/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ lib, fetchFromGitHub, fetchpatch
, python3, xdg_utils
, python36, xdg_utils
}:

python3.pkgs.buildPythonApplication rec {
python36.pkgs.buildPythonApplication rec {
pname = "papis";
version = "0.7.5";

Expand All @@ -20,7 +20,7 @@ python3.pkgs.buildPythonApplication rec {
sha256 = "0cmagfdaaml1pxhnxggifpb47z5g1p231qywnvnqpd3dm93382w1";
};

propagatedBuildInputs = with python3.pkgs; [
propagatedBuildInputs = with python36.pkgs; [
click requests filetype pyparsing configparser
arxiv2bib pyyaml chardet beautifulsoup4 prompt_toolkit
bibtexparser python-slugify pyparser pylibgen
Expand All @@ -29,7 +29,7 @@ python3.pkgs.buildPythonApplication rec {
dmenu-python whoosh
];

checkInputs = (with python3.pkgs; [
checkInputs = (with python36.pkgs; [
pytest
]) ++ [
xdg_utils
Expand Down

0 comments on commit 0e28815

Please sign in to comment.