pythonPackages.uuid: init at 1.30

This commit is contained in:
Rodney Lorrimar
2018-05-27 14:51:28 +01:00
committed by Vincent Ambo
parent 637cc2a35e
commit 3a195dc2ef
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ lib, stdenv, 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/;
};
}