stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / kitchen / default.nix
blob931017a198ff6d97bef497ff1de1f4cae2582df5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6 }:
8 buildPythonPackage rec {
9   pname = "kitchen";
10   version = "1.2.6";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-uEz1gvG9FVa2DrxzcLnTMeuSR7awcM6J3+lZy6LAsDw=";
18   };
20   # Waiting for upstream's clean-up
21   doCheck = false;
23   pythonImportsCheck = [ "kitchen" ];
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   };