mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
532516744d
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
17 lines
405 B
Nix
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; [ ];
|
|
};
|
|
}
|