Unverified Commit b6f6c613 authored by Felix Bargfeldt's avatar Felix Bargfeldt Committed by GitHub
Browse files

beanprice: 2.0.0 -> 2.1.0 (#444282)

parents ec5c5c74 18d33c67
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -6,20 +6,22 @@

python3Packages.buildPythonApplication rec {
  pname = "beanprice";
  version = "2.0.0";
  version = "2.1.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "beancount";
    repo = "beanprice";
    tag = "v${version}";
    hash = "sha256-+bqYnTzZByJlCPUhThM2B9UjgdWzjF21Yiw3fQAZ6k4=";
    hash = "sha256-Lhr8CRysZbI6dpPwRSN6DgvnKrxsIzH5YyZXRLU1l3Q=";
  };

  build-system = with python3Packages; [ setuptools ];

  dependencies = with python3Packages; [
    beancount
    curl-cffi
    diskcache
    python-dateutil
    regex
    requests
@@ -31,6 +33,12 @@ python3Packages.buildPythonApplication rec {
    regex
  ];

  # Disable tests that require internet access
  disabledTestPaths = [
    "beanprice/price_test.py"
    "beanprice/sources/yahoo_test.py"
  ];

  pythonImportsCheck = [ "beanprice" ];

  meta = {