1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 setuptools, 6 hjson, 7 pytestCheckHook, 8 rich, 9}: 10 11buildPythonPackage rec { 12 pname = "super-collections"; 13 version = "0.5.4"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "fralau"; 18 repo = "super-collections"; 19 tag = "v${version}"; 20 hash = "sha256-gp5BREoa1oHGm1ymDlIdlLTqyIvB0RmkNLYDJssI3VE="; 21 }; 22 23 build-system = [ 24 setuptools 25 ]; 26 27 dependencies = [ 28 hjson 29 ]; 30 31 nativeCheckInputs = [ 32 pytestCheckHook 33 rich 34 ]; 35 36 pythonImportsCheck = [ 37 "super_collections" 38 ]; 39 40 meta = { 41 description = "Python SuperDictionaries (with attributes) and SuperLists"; 42 homepage = "https://github.com/fralau/super-collections"; 43 license = lib.licenses.mit; 44 maintainers = with lib.maintainers; [ marcel ]; 45 }; 46}