beanprice: 2.0.0 -> 2.1.0 (#444282)

Changed files
+10 -2
pkgs
by-name
be
beanprice
+10 -2
pkgs/by-name/be/beanprice/package.nix
···
python3Packages.buildPythonApplication rec {
pname = "beanprice";
-
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "beancount";
repo = "beanprice";
tag = "v${version}";
-
hash = "sha256-+bqYnTzZByJlCPUhThM2B9UjgdWzjF21Yiw3fQAZ6k4=";
};
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
beancount
python-dateutil
regex
requests
···
click
pytestCheckHook
regex
];
pythonImportsCheck = [ "beanprice" ];
···
python3Packages.buildPythonApplication rec {
pname = "beanprice";
+
version = "2.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "beancount";
repo = "beanprice";
tag = "v${version}";
+
hash = "sha256-Lhr8CRysZbI6dpPwRSN6DgvnKrxsIzH5YyZXRLU1l3Q=";
};
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
beancount
+
curl-cffi
+
diskcache
python-dateutil
regex
requests
···
click
pytestCheckHook
regex
+
];
+
+
# Disable tests that require internet access
+
disabledTestPaths = [
+
"beanprice/price_test.py"
+
"beanprice/sources/yahoo_test.py"
];
pythonImportsCheck = [ "beanprice" ];