mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
79e6a1f3e2
Remove myself as a maintainer of spaCy and its dependencies.
25 lines
555 B
Nix
25 lines
555 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wasabi";
|
|
version = "0.8.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "6e5228a51f5550844ef5080e74759e7ecb6e344241989d018686ba968f0b4f5a";
|
|
};
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "A lightweight console printing and formatting toolkit";
|
|
homepage = "https://github.com/ines/wasabi";
|
|
changelog = "https://github.com/ines/wasabi/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
};
|
|
}
|