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

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #204477 from r-ryantm/auto-update/python3.10-yamlloader

python310Packages.yamlloader: 1.1.0 -> 1.2.2

authored by

Fabian Affolter and committed by
GitHub
9feb6e7d 228be39f

+12 -4
+12 -4
pkgs/development/python-modules/yamlloader/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 2 - , pytest, pyyaml, hypothesis 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytest 5 + , pyyaml 6 + , hypothesis 7 + , pythonOlder 3 8 }: 4 9 5 10 buildPythonPackage rec { 6 11 pname = "yamlloader"; 7 - version = "1.1.0"; 12 + version = "1.2.2"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.6"; 8 16 9 17 src = fetchPypi { 10 18 inherit pname version; 11 - sha256 = "8a297c7a197683ba02e5e2b882ffd6c6180d01bdefb534b69cd3962df020bfe6"; 19 + hash = "sha256-NWaf17n4xrONuGGlFwFULEJnK0boq2MlNIaoy4N3toc="; 12 20 }; 13 21 14 22 propagatedBuildInputs = [