Skip to content

Commit

Permalink
pythonPackages.emoji: 0.3.9 -> 0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
joachifm committed May 25, 2017
1 parent 7afa8d6 commit 3f68820
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 20 deletions.
23 changes: 23 additions & 0 deletions pkgs/development/python-modules/emoji/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, nose }:

buildPythonPackage rec {
pname = "emoji";
name = "${pname}-${version}";
version = "0.4.5";

src = fetchPypi {
inherit pname version;
sha256 = "13i9mgkpll8m92b8mgm5yab4i78nwsl9h38nriavg105id94mg6q";
};

checkInputs = [ nose ];

checkPhase = ''nosetests'';

meta = with lib; {
description = "Emoji for Python";
homepage = https://pypi.python.org/pypi/emoji/;
license = licenses.bsd3;
maintainers = with maintainers; [ joachifm ];
};
}
21 changes: 1 addition & 20 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15530,26 +15530,7 @@ in {
};
};

emoji = buildPythonPackage rec {
name = "emoji-${version}";
version = "0.3.9";

src = pkgs.fetchurl {
url = "mirror://pypi/e/emoji/${name}.tar.gz";
sha256 = "19p5c2nlq0w9972rf9fghyswnijwgig5f8cyzs32kppnmzvzbkxw";
};

buildInputs = with self; [ nose ];

checkPhase = ''nosetests'';

meta = {
description = "Emoji for Python";
homepage = https://pypi.python.org/pypi/emoji/;
license = licenses.bsd3;
maintainers = with maintainers; [ joachifm ];
};
};
emoji = callPackage ../development/python-modules/emoji { };

ntfy = buildPythonPackage rec {
version = "1.2.0";
Expand Down

0 comments on commit 3f68820

Please sign in to comment.