depot/third_party/nixpkgs/pkgs/development/python-modules/names/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

35 lines
641 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
lib,
# pythonPackages
pytest,
}:
buildPythonPackage rec {
pname = "names";
version = "0.3.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "treyhunner";
repo = pname;
rev = version;
sha256 = "0jfn11bl05k3qkqw0f4vi2i2lhllxdrbb1732qiisdy9fbvv8611";
};
nativeCheckInputs = [ pytest ];
checkPhase = ''
pytest
'';
meta = {
description = "Generate random names";
mainProgram = "names";
homepage = "https://github.com/treyhunner/names";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kamadorueda ];
};
}