depot/third_party/nixpkgs/pkgs/development/python-modules/gitlike-commands/default.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

40 lines
879 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "gitlike-commands";
version = "0.3.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "unixorn";
repo = "gitlike-commands";
rev = "refs/tags/v${version}";
hash = "sha256-Z0l8nCKov1iMJvI3YTHvg0ey+oPju3rgaKtmk6OX44g=";
};
nativeBuildInputs = [
poetry-core
];
# Module has no real tests
doCheck = false;
pythonImportsCheck = [
"gitlike_commands"
];
meta = with lib; {
description = "Easy python module for creating git-style subcommand handling";
homepage = "https://github.com/unixorn/gitlike-commands";
changelog = "https://github.com/unixorn/gitlike-commands/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}