nixpkgs/pkgs/development/python-modules/colored/default.nix
R. RyanTM 435ee8e1f9 python36Packages.colored: 1.1.5 -> 1.3.93
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-colored/versions
2018-10-24 16:27:44 +02:00

25 lines
470 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "colored";
version = "1.3.93";
src = fetchPypi {
inherit pname version;
sha256 = "0xbhq9nd9xz3b6w0c4q33jfgnv8jid023v2fyhi7hsrz1scym5l2";
};
# No proper test suite
doCheck = false;
meta = with stdenv.lib; {
homepage = https://gitlab.com/dslackw/colored;
description = "Simple library for color and formatting to terminal";
license = licenses.mit;
};
}