9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
38 lines
842 B
Nix
38 lines
842 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "art";
|
|
version = "6.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sepandhaghighi";
|
|
repo = "art";
|
|
rev = "v${version}";
|
|
hash = "sha256-ZF7UvqJU7KxNccMXL7tsL/s5KYpgGeGqaEATHo4WyNI=";
|
|
};
|
|
|
|
pythonImportsCheck = [ "art" ];
|
|
|
|
# TypeError: art() missing 1 required positional argument: 'artname'
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
$out/bin/art
|
|
$out/bin/art test
|
|
$out/bin/art test2
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "ASCII art library for Python";
|
|
homepage = "https://github.com/sepandhaghighi/art";
|
|
changelog = "https://github.com/sepandhaghighi/art/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|