about summary refs log tree commit diff
path: root/pkgs/development/python-modules/uuid/default.nix
blob: c7bcb77007017ef786e1d62dcb08336326975c4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "uuid";
  version = "1.30";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0gqrjsm85nnkxkmd1vk8350wqj2cigjflnvcydk084n5980cr1qz";
  };

  meta = with lib; {
    description = "UUID object and generation functions (Python 2.3 or higher)";
    homepage = "http://zesty.ca/python/";
  };
}