mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
pythonPackages.kitchen: 1.1.1 -> 1.2.4
This commit is contained in:
parent
268e88830c
commit
dbed116989
2 changed files with 18 additions and 11 deletions
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 ];
|
||||
};
|
||||
}
|
|
@ -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}";
|
||||
|
|
Loading…
Reference in a new issue