about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/kitchen/default.nix
blob: 1a14b974114e572cf2c7e671b2bbe7281e2b9ed6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, stdenv, 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; [ ];
  };
}