pythonPackages.emoji: 0.3.9 -> 0.4.5

This commit is contained in:
Joachim Fasting 2017-05-25 17:07:59 +02:00
parent 7afa8d6833
commit 3f688207e7
No known key found for this signature in database
GPG key ID: 7544761007FE4E08
2 changed files with 24 additions and 20 deletions

View file

@ -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 ];
};
}

View file

@ -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";