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