pythonPackages.kitchen: 1.1.1 -> 1.2.4
This commit is contained in:
17
pkgs/development/python-modules/kitchen/default.nix
Normal file
17
pkgs/development/python-modules/kitchen/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
buildPythonPackage rec {
|
||||
pname = "kitchen";
|
||||
version = "1.2.4";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0ggv3p4x8jvmmzhp0xm00h6pvh1g0gmycw71rjwagnrj8n23vxrq";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Kitchen contains a cornucopia of useful code";
|
||||
license = license.lgpl;
|
||||
maintainers = with maintainers; [ mornfall ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user