at master 696 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pythonOlder, 6}: 7 8buildPythonPackage rec { 9 pname = "kitchen"; 10 version = "1.2.6"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-uEz1gvG9FVa2DrxzcLnTMeuSR7awcM6J3+lZy6LAsDw="; 18 }; 19 20 # Waiting for upstream's clean-up 21 doCheck = false; 22 23 pythonImportsCheck = [ "kitchen" ]; 24 25 meta = with lib; { 26 description = "Kitchen contains a cornucopia of useful code"; 27 homepage = "https://github.com/fedora-infra/kitchen"; 28 changelog = "https://github.com/fedora-infra/kitchen/blob/${version}/NEWS.rst"; 29 license = licenses.lgpl2Only; 30 maintainers = [ ]; 31 }; 32}