Skip to content

Commit

Permalink
pythonPackages.kitchen: 1.1.1 -> 1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Apr 27, 2017
1 parent 268e888 commit dbed116
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 deletions.
17 changes: 17 additions & 0 deletions pkgs/development/python-modules/kitchen/default.nix
@@ -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 ];
};
}
12 changes: 1 addition & 11 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -13593,17 +13593,7 @@ in {
};
};

kitchen = buildPythonPackage (rec {
name = "kitchen-1.1.1";
disabled = isPy3k;

meta.maintainers = with maintainers; [ mornfall ];

src = pkgs.fetchurl {
url = "mirror://pypi/k/kitchen/kitchen-1.1.1.tar.gz";
sha256 = "0ki840hjk1q19w6icv0dj2jxb00966nwy9b1jib0dgdspj00yrr5";
};
});
kitchen = callPackage ../development/python-modules/kitchen/default.nix { };

pylast = buildPythonPackage rec {
name = "pylast-${version}";
Expand Down

0 comments on commit dbed116

Please sign in to comment.