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

python310Packages.yamlloader: 1.1.0 -> 1.2.2
This commit is contained in:
Fabian Affolter 2022-12-04 17:47:34 +01:00 committed by GitHub
commit 9feb6e7d66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,22 @@
{ lib, buildPythonPackage, fetchPypi
, pytest, pyyaml, hypothesis
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pyyaml
, hypothesis
, pythonOlder
}:
buildPythonPackage rec {
pname = "yamlloader";
version = "1.1.0";
version = "1.2.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "8a297c7a197683ba02e5e2b882ffd6c6180d01bdefb534b69cd3962df020bfe6";
hash = "sha256-NWaf17n4xrONuGGlFwFULEJnK0boq2MlNIaoy4N3toc=";
};
propagatedBuildInputs = [