1{ 2 buildPythonPackage, 3 fetchPypi, 4 lib, 5 flit-core, 6}: 7buildPythonPackage rec { 8 pname = "handy-archives"; 9 version = "0.2.0"; 10 pyproject = true; 11 12 src = fetchPypi { 13 inherit version; 14 pname = "handy_archives"; 15 hash = "sha256-+6IRAf2eKdXjtygjJhqq4GuTUGhvDSBneG1k3Oc+s/Y="; 16 }; 17 18 build-system = [ flit-core ]; 19 20 dependencies = [ 21 ]; 22 23 meta = { 24 description = "Some handy archive helpers for Python"; 25 homepage = "https://github.com/domdfcoding/handy-archives"; 26 license = lib.licenses.mit; 27 maintainers = with lib.maintainers; [ tyberius-prime ]; 28 }; 29}