mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 23:13:56 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
119 lines
2.1 KiB
Nix
119 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
arxiv2bib,
|
|
beautifulsoup4,
|
|
bibtexparser,
|
|
buildPythonPackage,
|
|
chardet,
|
|
click,
|
|
colorama,
|
|
configparser,
|
|
dominate,
|
|
fetchFromGitHub,
|
|
filetype,
|
|
habanero,
|
|
isbnlib,
|
|
lxml,
|
|
prompt-toolkit,
|
|
pygments,
|
|
pyparsing,
|
|
pytestCheckHook,
|
|
python-doi,
|
|
python-slugify,
|
|
pythonOlder,
|
|
pyyaml,
|
|
requests,
|
|
stevedore,
|
|
tqdm,
|
|
typing-extensions,
|
|
whoosh,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "papis";
|
|
version = "0.13";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "papis";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-iRrf37hq+9D01JRaQIqg7yTPbLX6I0ZGnzG3r1DX464=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
arxiv2bib
|
|
beautifulsoup4
|
|
bibtexparser
|
|
chardet
|
|
click
|
|
colorama
|
|
configparser
|
|
dominate
|
|
filetype
|
|
habanero
|
|
isbnlib
|
|
lxml
|
|
prompt-toolkit
|
|
pygments
|
|
pyparsing
|
|
python-doi
|
|
python-slugify
|
|
pyyaml
|
|
requests
|
|
stevedore
|
|
tqdm
|
|
typing-extensions
|
|
whoosh
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace "--cov=papis" ""
|
|
'';
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d);
|
|
'';
|
|
|
|
pytestFlagsArray = [ "papis tests" ];
|
|
|
|
disabledTestPaths = [
|
|
"tests/downloaders"
|
|
"papis/downloaders/usenix.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
"get_document_url"
|
|
"match"
|
|
"test_doi_to_data"
|
|
"test_downloader_getter"
|
|
"test_general"
|
|
"test_get_config_dirs"
|
|
"test_get_configuration"
|
|
"test_get_data"
|
|
"test_valid_dblp_key"
|
|
"test_validate_arxivid"
|
|
"test_yaml"
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ "test_default_opener" ];
|
|
|
|
pythonImportsCheck = [ "papis" ];
|
|
|
|
meta = with lib; {
|
|
description = "Powerful command-line document and bibliography manager";
|
|
mainProgram = "papis";
|
|
homepage = "https://papis.readthedocs.io/";
|
|
changelog = "https://github.com/papis/papis/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [
|
|
nico202
|
|
teto
|
|
];
|
|
};
|
|
}
|