nixpkgs/pkgs/development/python-modules/kitchen/default.nix

17 lines
395 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
2017-04-27 05:40:38 +00:00
buildPythonPackage rec {
pname = "kitchen";
version = "1.2.6";
2017-04-27 05:40:38 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0g5hq2icnng9vy4www5hnr3r5srisfwp0wxw1sv5c5dxy61gak5q";
2017-04-27 05:40:38 +00:00
};
meta = with lib; {
2017-04-27 05:40:38 +00:00
description = "Kitchen contains a cornucopia of useful code";
license = licenses.lgpl2;
maintainers = with maintainers; [ ];
2017-04-27 05:40:38 +00:00
};
}