1{ lib, buildPythonPackage, fetchPypi, pyyaml }: 2 3buildPythonPackage rec { 4 pname = "cmdline"; 5 version = "0.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "7cf6af53549892b2218c2f56a199dff54a733be5c5515c0fd626812070b0a86a"; 10 }; 11 12 # No tests, https://github.com/rca/cmdline/issues/1 13 doCheck = false; 14 propagatedBuildInputs = [ pyyaml ]; 15 16 meta = with lib; { 17 description = "Utilities for consistent command line tools"; 18 homepage = "https://github.com/rca/cmdline"; 19 license = licenses.asl20; 20 }; 21}