nixpkgs/pkgs/development/python-modules/colorclass/default.nix
2020-04-10 17:54:53 +01:00

21 lines
471 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "colorclass";
version = "2.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "b05c2a348dfc1aff2d502527d78a5b7b7e2f85da94a96c5081210d8e9ee8e18b";
};
# No tests in archive
doCheck = false;
meta = with stdenv.lib; {
homepage = "https://github.com/Robpol86/colorclass";
license = licenses.mit;
description = "Automatic support for console colors";
};
}