python3Packages.pricehist: move from 'pkgs/by-name'

This commit is contained in:
Bruno BELANYI
2026-04-05 21:42:32 +01:00
parent 1ec6ad00ff
commit 65fac803f6
2 changed files with 15 additions and 6 deletions
@@ -1,10 +1,17 @@
{
lib,
python3Packages,
fetchFromGitLab,
buildPythonPackage,
cssselect,
curlify,
lxml,
poetry-core,
pytest-mock,
pytestCheckHook,
requests,
responses,
}:
python3Packages.buildPythonApplication (finalAttrs: {
buildPythonPackage (finalAttrs: {
pname = "pricehist";
version = "1.4.14";
pyproject = true;
@@ -18,18 +25,18 @@ python3Packages.buildPythonApplication (finalAttrs: {
pythonRelaxDeps = [ "lxml" ];
dependencies = with python3Packages; [
dependencies = [
requests
lxml
cssselect
curlify
];
build-system = with python3Packages; [
build-system = [
poetry-core
];
nativeCheckInputs = with python3Packages; [
nativeCheckInputs = [
responses
pytest-mock
pytestCheckHook
+2
View File
@@ -12799,6 +12799,8 @@ self: super: with self; {
price-parser = callPackage ../development/python-modules/price-parser { };
pricehist = callPackage ../development/python-modules/pricehist { };
primecountpy = callPackage ../development/python-modules/primecountpy { };
primepy = callPackage ../development/python-modules/primepy { };