depot/pkgs/tools/misc/pricehist/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

50 lines
974 B
Nix

{ lib
, buildPythonApplication
, fetchFromGitLab
, requests
, lxml
, cssselect
, curlify
, poetry-core
, pytest-mock
, responses
, pytestCheckHook
}:
buildPythonApplication rec {
pname = "pricehist";
version = "1.4.7";
format = "pyproject";
src = fetchFromGitLab {
owner = "chrisberkhout";
repo = "pricehist";
rev = version;
hash = "sha256-SBRJxNnA+nOxO6h97WZZHwhxoXeNtb5+rDayn4Hw6so=";
};
propagatedBuildInputs = [
requests
lxml
cssselect
curlify
poetry-core
];
nativeBuildInputs = [
];
nativeCheckInputs = [
responses
pytest-mock
pytestCheckHook
];
meta = with lib; {
description = "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 ];
};
}