Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
889 B
Nix
44 lines
889 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchPypi,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "pybibget";
|
|
version = "0.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-M6CIctTOVn7kIPmsoHQmYl2wQaUzfel7ryw/3ebQitg=";
|
|
};
|
|
|
|
build-system = [
|
|
python3.pkgs.setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
lxml
|
|
httpx
|
|
appdirs
|
|
aiolimiter
|
|
pybtex
|
|
pylatexenc
|
|
numpy
|
|
networkx
|
|
requests
|
|
];
|
|
|
|
# Tests for this application do not run on NixOS, and binaries were
|
|
# manually tested instead
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Command line utility to automatically retrieve BibTeX citations from MathSciNet, arXiv, PubMed and doi.org";
|
|
homepage = "https://github.com/wirhabenzeit/pybibget";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ vasissualiyp ];
|
|
};
|
|
}
|