1{ lib, buildPythonPackage, fetchPypi 2, pytest, pyyaml, hypothesis 3}: 4 5buildPythonPackage rec { 6 pname = "yamlloader"; 7 version = "1.1.0"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "8a297c7a197683ba02e5e2b882ffd6c6180d01bdefb534b69cd3962df020bfe6"; 12 }; 13 14 propagatedBuildInputs = [ 15 pyyaml 16 ]; 17 18 checkInputs = [ 19 hypothesis 20 pytest 21 ]; 22 23 pythonImportsCheck = [ 24 "yaml" 25 "yamlloader" 26 ]; 27 28 meta = with lib; { 29 description = "A case-insensitive list for Python"; 30 homepage = "https://github.com/Phynix/yamlloader"; 31 license = licenses.mit; 32 maintainers = with maintainers; [ freezeboy ]; 33 }; 34}