python310Packages.beancount 0 -> 1 attrpath: python310Packages.beancount Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/fzkn1hj9xmcghgyyrliih77slxc6pcl1-packages.json.drv building '/nix/store/fzkn1hj9xmcghgyyrliih77slxc6pcl1-packages.json.drv'... Going to be running update for following packages: - python3.10-beancount-2.3.5 Press Enter key to continue... Running update for: - python3.10-beancount-2.3.5: UPDATING ... - python3.10-beancount-2.3.5: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/beancount/default.nix b/pkgs/development/python-modules/beancount/default.nix index bff59de42549..103f88082068 100644 --- a/pkgs/development/python-modules/beancount/default.nix +++ b/pkgs/development/python-modules/beancount/default.nix @@ -17,14 +17,14 @@ }: buildPythonPackage rec { - version = "2.3.5"; + version = "2.3.6"; pname = "beancount"; disabled = !isPy3k; src = fetchPypi { inherit pname version; - hash = "sha256-FONWJaLpy9Q8rmF42gjLPxIk9iYeVBymcm3zXZjpw2o="; + hash = "sha256-gB+Tvta1fS4iQ2aIxInVob8fduIQ887RhoB1fmDTR1o="; }; # Tests require files not included in the PyPI archive. No auto update branch exists Old version 2.3.5" not present in master derivation file with contents: { lib , buildPythonPackage , fetchPypi , isPy3k , beautifulsoup4 , bottle , chardet , python-dateutil , google-api-python-client , google-auth-oauthlib , lxml , oauth2client , ply , pytest , python-magic , requests }: buildPythonPackage rec { version = "2.3.6"; pname = "beancount"; disabled = !isPy3k; src = fetchPypi { inherit pname version; hash = "sha256-gB+Tvta1fS4iQ2aIxInVob8fduIQ887RhoB1fmDTR1o="; }; # Tests require files not included in the PyPI archive. doCheck = false; propagatedBuildInputs = [ beautifulsoup4 bottle chardet python-dateutil google-api-python-client google-auth-oauthlib lxml oauth2client ply python-magic requests # pytest really is a runtime dependency # https://github.com/beancount/beancount/blob/v2/setup.py#L81-L82 pytest ]; meta = with lib; { homepage = "https://github.com/beancount/beancount"; description = "Double-entry bookkeeping computer language"; longDescription = '' A double-entry bookkeeping computer language that lets you define financial transaction records in a text file, read them in memory, generate a variety of reports from them, and provides a web interface. ''; license = licenses.gpl2Only; maintainers = with maintainers; [ bhipple ]; }; }