about summary refs log tree commit diff
path: root/pkgs/development/python-modules/uuid/default.nix
blob: 5e31f6ccad09ba97e09a625a005ccc4ba2b8a1b0 (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/;
  };
}