Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
629 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
args,
}:
buildPythonPackage rec {
pname = "clint";
version = "0.5.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-BSJMMrEHVWPQsW0AFfqvnaQ6ohTkohQOUfCHieekxao=";
};
build-system = [ setuptools ];
dependencies = [ args ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "clint" ];
meta = with lib; {
homepage = "https://github.com/kennethreitz/clint";
description = "Python Command Line Interface Tools";
license = licenses.isc;
maintainers = [ ];
};
}