about summary refs log tree commit diff
path: root/pkgs/development/python-modules/kitchen/default.nix
blob: 0b6f41d2c1992af4d144ccd23d95044834806cf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
  pname = "kitchen";
  version = "1.2.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0g5hq2icnng9vy4www5hnr3r5srisfwp0wxw1sv5c5dxy61gak5q";
  };

  meta = with lib; {
    description = "Kitchen contains a cornucopia of useful code";
    license = licenses.lgpl2;
    maintainers = with maintainers; [ ];
  };
}