pythonPackages.uuid: init at 1.30
This commit is contained in:
committed by
Vincent Ambo
parent
637cc2a35e
commit
3a195dc2ef
16
pkgs/development/python-modules/uuid/default.nix
Normal file
16
pkgs/development/python-modules/uuid/default.nix
Normal 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/;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user