nixpkgs/pkgs/development/python-modules/kitchen/default.nix
R. RyanTM 532516744d python37Packages.kitchen: 1.2.5 -> 1.2.6
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-kitchen/versions
2019-05-22 11:07:30 -07:00

17 lines
405 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "kitchen";
version = "1.2.6";
src = fetchPypi {
inherit pname version;
sha256 = "0g5hq2icnng9vy4www5hnr3r5srisfwp0wxw1sv5c5dxy61gak5q";
};
meta = with stdenv.lib; {
description = "Kitchen contains a cornucopia of useful code";
license = licenses.lgpl2;
maintainers = with maintainers; [ ];
};
}