python311Packages.type-infer 0 -> 1 attrpath: python311Packages.type-infer 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/hb2bxgap9wrymfjln8bh484p4vfnkzp9-packages.json.drv building '/nix/store/hb2bxgap9wrymfjln8bh484p4vfnkzp9-packages.json.drv'... Going to be running update for following packages: - python3.11-type-infer-0.0.17 Press Enter key to continue... Running update for: - python3.11-type-infer-0.0.17: UPDATING ... - python3.11-type-infer-0.0.17: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/type-infer/default.nix b/pkgs/development/python-modules/type-infer/default.nix index 7983ac8d29bf..1e1021503100 100644 --- a/pkgs/development/python-modules/type-infer/default.nix +++ b/pkgs/development/python-modules/type-infer/default.nix @@ -24,7 +24,7 @@ let in buildPythonPackage rec { pname = "type-infer"; - version = "0.0.17"; + version = "0.0.19"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -33,7 +33,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "type_infer"; inherit version; - hash = "sha256-2bPXJuGDXTVoYUP9IfwyRy8LbMT/ySoHDzuelrOq/DU="; + hash = "sha256-7fWRM776lAyOncp6WZDLH9ouVBhVvV23105xvhw8V24="; }; nativeBuildInputs = [ An auto update branch exists with message `python311Packages.type-infer: 0.0.17 -> 0.0.18`. New version is 0.0.19. The auto update branch does not match or exceed the new version. Old version 0.0.17" not present in staging derivation file with contents: { lib , buildPythonPackage , pythonOlder , fetchPypi , poetry-core , colorlog , dataclasses-json , langid , nltk , numpy , pandas , psutil , python-dateutil , scipy , toml , nltk-data , symlinkJoin }: let testNltkData = symlinkJoin { name = "nltk-test-data"; paths = [ nltk-data.punkt nltk-data.stopwords ]; }; in buildPythonPackage rec { pname = "type-infer"; version = "0.0.18"; format = "pyproject"; disabled = pythonOlder "3.8"; # using PyPI because the repo does not have tags or release branches src = fetchPypi { pname = "type_infer"; inherit version; hash = "sha256-nA5TlyHpCueFWqUggS7T/eKSLlffp0pIyGCouwXPZ28="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ colorlog dataclasses-json langid nltk numpy pandas psutil python-dateutil scipy toml ]; # PyPI package does not include tests doCheck = false; # Package import requires NLTK data to be downloaded # It is the only way to set NLTK_DATA environment variable, # so that it is available in pythonImportsCheck env.NLTK_DATA = testNltkData; pythonImportsCheck = [ "type_infer" ]; meta = with lib; { description = "Automated type inference for Machine Learning pipelines"; homepage = "https://pypi.org/project/type-infer/"; license = licenses.gpl3Only; maintainers = with maintainers; [ mbalatsko ]; }; }