Merge pull request #200814 from r-ryantm/auto-update/python310Packages.colored

python310Packages.colored: 1.4.3 -> 1.4.4
This commit is contained in:
Mario Rodas 2022-11-12 13:52:26 -05:00 committed by GitHub
commit df5acd726b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,24 +1,34 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, nose
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "colored"; pname = "colored";
version = "1.4.3"; version = "1.4.4";
format = "setuptools";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "b7b48b9f40e8a65bbb54813d5d79dd008dc8b8c5638d5bbfd30fc5a82e6def7a"; sha256 = "sha256-BP9NTdUUJ0/juZohu1L7lvJojAHpP7p77zciHny1bOA=";
}; };
# No proper test suite checkInputs = [ nose ];
doCheck = false;
checkPhase = ''
nosetests
'';
pythonImportsCheck = [
"colored"
];
meta = with lib; { meta = with lib; {
homepage = "https://gitlab.com/dslackw/colored";
description = "Simple library for color and formatting to terminal"; description = "Simple library for color and formatting to terminal";
homepage = "https://gitlab.com/dslackw/colored";
changelog = "https://gitlab.com/dslackw/colored/-/raw/${version}/CHANGES.md";
maintainers = with maintainers; [ ];
license = licenses.mit; license = licenses.mit;
}; };
} }