mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
python3Packages.papis: provide as a library too (#59070)
* python3Packages.papis: provides as a library too The project is turning into a dependency for several scripts and possibly UIs (see the different repositories at https://github.com/papis/) so it makes sense to have it as a library. * moved papis to python-modules * add myself as maintainer
This commit is contained in:
parent
5d81445797
commit
a4c15f1b35
3 changed files with 14 additions and 7 deletions
|
@ -1,8 +1,13 @@
|
|||
{ lib, fetchFromGitHub, fetchpatch
|
||||
, python3, xdg_utils
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch, xdg_utils
|
||||
, requests, filetype, pyparsing, configparser, arxiv2bib
|
||||
, pyyaml, chardet, beautifulsoup4, colorama, bibtexparser
|
||||
, pylibgen, click, python-slugify, habanero, isbnlib
|
||||
, prompt_toolkit, pygments
|
||||
#, optional, dependencies
|
||||
, jinja2, whoosh, pytest
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
buildPythonPackage rec {
|
||||
pname = "papis";
|
||||
version = "0.8.2";
|
||||
|
||||
|
@ -14,7 +19,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||
sha256 = "0sa4hpgjvqkjcmp9bjr27b5m5jg4pfspdc8nf1ny80sr0kzn72hb";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
propagatedBuildInputs = [
|
||||
requests filetype pyparsing configparser arxiv2bib
|
||||
pyyaml chardet beautifulsoup4 colorama bibtexparser
|
||||
pylibgen click python-slugify habanero isbnlib
|
||||
|
@ -23,7 +28,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||
jinja2 whoosh
|
||||
];
|
||||
|
||||
checkInputs = (with python3.pkgs; [
|
||||
checkInputs = ([
|
||||
pytest
|
||||
]) ++ [
|
||||
xdg_utils
|
||||
|
@ -39,6 +44,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||
description = "Powerful command-line document and bibliography manager";
|
||||
homepage = http://papis.readthedocs.io/en/latest/;
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = [ lib.maintainers.nico202 ];
|
||||
maintainers = with lib.maintainers; [ nico202 teto ];
|
||||
};
|
||||
}
|
|
@ -16070,7 +16070,7 @@ in
|
|||
|
||||
papirus-icon-theme = callPackage ../data/icons/papirus-icon-theme { };
|
||||
|
||||
papis = callPackage ../tools/misc/papis { };
|
||||
papis = with python3Packages; toPythonApplication papis;
|
||||
|
||||
paps = callPackage ../tools/misc/paps { };
|
||||
|
||||
|
|
|
@ -2124,6 +2124,8 @@ in {
|
|||
|
||||
paperwork-backend = callPackage ../applications/office/paperwork/backend.nix { };
|
||||
|
||||
papis = callPackage ../development/python-modules/papis { };
|
||||
|
||||
papis-python-rofi = callPackage ../development/python-modules/papis-python-rofi { };
|
||||
|
||||
pathspec = callPackage ../development/python-modules/pathspec { };
|
||||
|
|
Loading…
Reference in a new issue