mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
pythonPackages.colorclass: disable tests
This commit is contained in:
parent
7b28208b00
commit
0af84da84b
@ -2466,14 +2466,18 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
colorclass = buildPythonPackage rec {
|
colorclass = buildPythonPackage rec {
|
||||||
|
pname = "colorclass";
|
||||||
version = "2.2.0";
|
version = "2.2.0";
|
||||||
name = "colorclass-${version}";
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = fetchPypi {
|
||||||
url = "mirror://pypi/c/colorclass/${name}.tar.gz";
|
inherit pname version;
|
||||||
sha256 = "b05c2a348dfc1aff2d502527d78a5b7b7e2f85da94a96c5081210d8e9ee8e18b";
|
sha256 = "b05c2a348dfc1aff2d502527d78a5b7b7e2f85da94a96c5081210d8e9ee8e18b";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# No tests in archive
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/Robpol86/colorclass";
|
homepage = "https://github.com/Robpol86/colorclass";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
Loading…
Reference in New Issue
Block a user