mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
35 lines
658 B
Nix
35 lines
658 B
Nix
{
|
|
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 = with maintainers; [ domenkozar ];
|
|
};
|
|
}
|