nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.yaspin: 3.1.0 -> 3.4.0

This commit was automatically generated using update-python-libraries.

+4 -2
+4 -2
pkgs/development/python-modules/yaspin/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 5 poetry-core, 6 + pytest-mock, 6 7 pytest-xdist, 7 8 pytestCheckHook, 8 9 termcolor, ··· 11 10 12 11 buildPythonPackage rec { 13 12 pname = "yaspin"; 14 - version = "3.1.0"; 13 + version = "3.4.0"; 15 14 pyproject = true; 16 15 17 16 src = fetchFromGitHub { 18 17 owner = "pavdmyt"; 19 18 repo = "yaspin"; 20 19 tag = "v${version}"; 21 - hash = "sha256-4IWaAPqzGri7V8X2gL607F5GlWfIFDlBBpDwSe4sz9I="; 20 + hash = "sha256-uHW0lSkmNYZh4OGCFgaiIoqhY6KFojSyyEezTNxYqMw="; 22 21 }; 23 22 24 23 build-system = [ poetry-core ]; ··· 30 29 ]; 31 30 32 31 nativeCheckInputs = [ 32 + pytest-mock 33 33 pytest-xdist 34 34 pytestCheckHook 35 35 ];