nixpkgs/pkgs/tools/misc/pricehist/default.nix
squalus b5fb750003 pricehist: fix build
Fix build for the newer version of lxml provided by nixpkgs
2024-03-15 23:44:12 -07:00

57 lines
1.1 KiB
Nix

{ lib
, buildPythonApplication
, fetchFromGitLab
, requests
, lxml
, cssselect
, curlify
, poetry-core
, pytest-mock
, responses
, pytestCheckHook
, pythonRelaxDepsHook
}:
buildPythonApplication rec {
pname = "pricehist";
version = "1.4.6";
format = "pyproject";
src = fetchFromGitLab {
owner = "chrisberkhout";
repo = "pricehist";
rev = version;
hash = "sha256-RMZKp0JXQLt9tBZPkb3e/au85lV/FkRBCRYzd2lgUPc=";
};
propagatedBuildInputs = [
requests
lxml
cssselect
curlify
poetry-core
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
nativeCheckInputs = [
responses
pytest-mock
pytestCheckHook
];
pythonRelaxDeps = [
# https://gitlab.com/chrisberkhout/pricehist/-/issues/6
"lxml"
];
meta = with lib; {
description = "A command-line tool for fetching and formatting historical price data, with support for multiple data sources and output formats";
homepage = "https://gitlab.com/chrisberkhout/pricehist";
license = licenses.mit;
mainProgram = "pricehist";
maintainers = with maintainers; [ chrpinedo ];
};
}