Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / slugid / default.nix
blob3d3e541872673b1769b34d0ee359cd52fe7e523d
1 { buildPythonPackage
2 , lib
3 , fetchFromGitHub
4 }:
6 buildPythonPackage rec {
7   pname = "slugid";
8   version = "2.0.0";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "taskcluster";
13     repo = "slugid.py";
14     rev = "v${version}";
15     sha256 = "McBxGRi8KqVhe2Xez5k4G67R5wBCCoh41dRsTKW4xMA=";
16   };
18   doCheck = false; # has no tests
20   pythonImportsCheck = [
21     "slugid"
22   ];
24   meta = with lib; {
25     description = "URL-safe base64 UUID encoder for generating 22 character slugs";
26     homepage = "https://github.com/taskcluster/slugid.py";
27     license = licenses.mpl20;
28     maintainers = with maintainers; [ milahu ];
29   };