uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
121
pkgs/development/python-modules/papis/default.nix
Normal file
121
pkgs/development/python-modules/papis/default.nix
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, arxiv2bib
|
||||
, beautifulsoup4
|
||||
, bibtexparser
|
||||
, buildPythonPackage
|
||||
, chardet
|
||||
, click
|
||||
, colorama
|
||||
, configparser
|
||||
, fetchFromGitHub
|
||||
, filetype
|
||||
, habanero
|
||||
, isbnlib
|
||||
, lxml
|
||||
, prompt-toolkit
|
||||
, pygments
|
||||
, pyparsing
|
||||
, pytestCheckHook
|
||||
, python-doi
|
||||
, python-slugify
|
||||
, pythonAtLeast
|
||||
, pythonOlder
|
||||
, pyyaml
|
||||
, requests
|
||||
, stevedore
|
||||
, tqdm
|
||||
, typing-extensions
|
||||
, whoosh
|
||||
, xdg-utils
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "papis";
|
||||
version = "0.11.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "papis";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-hlokGoXBhxkAMbqohztZEWlPBSSAUIAGuHtrF7iXcy0=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
arxiv2bib
|
||||
beautifulsoup4
|
||||
bibtexparser
|
||||
chardet
|
||||
click
|
||||
colorama
|
||||
configparser
|
||||
filetype
|
||||
habanero
|
||||
isbnlib
|
||||
lxml
|
||||
prompt-toolkit
|
||||
pygments
|
||||
pyparsing
|
||||
python-doi
|
||||
python-slugify
|
||||
pyyaml
|
||||
requests
|
||||
stevedore
|
||||
tqdm
|
||||
typing-extensions
|
||||
whoosh
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace "isbnlib>=3.9.1,<3.10" "isbnlib>=3.9"
|
||||
substituteInPlace setup.cfg \
|
||||
--replace "--cov=papis" ""
|
||||
'';
|
||||
|
||||
# Tests are failing on Python > 3.9
|
||||
doCheck = !stdenv.isDarwin && !(pythonAtLeast "3.10");
|
||||
|
||||
checkInputs = ([
|
||||
pytestCheckHook
|
||||
]) ++ [
|
||||
xdg-utils
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
export HOME=$(mktemp -d);
|
||||
'';
|
||||
|
||||
pytestFlagsArray = [
|
||||
"papis tests"
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
"tests/downloaders"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
"get_document_url"
|
||||
"match"
|
||||
"test_doi_to_data"
|
||||
"test_downloader_getter"
|
||||
"test_general"
|
||||
"test_get_data"
|
||||
"test_validate_arxivid"
|
||||
"test_yaml"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"papis"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Powerful command-line document and bibliography manager";
|
||||
homepage = "https://papis.readthedocs.io/";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ nico202 teto ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue