depot/third_party/nixpkgs/pkgs/development/python-modules/shortuuid/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

25 lines
550 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, pep8
}:
buildPythonPackage rec {
pname = "shortuuid";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "3c11d2007b915c43bee3e10625f068d8a349e04f0d81f08f5fa08507427ebf1f";
};
buildInputs = [pep8];
meta = with stdenv.lib; {
description = "A generator library for concise, unambiguous and URL-safe UUIDs";
homepage = "https://github.com/stochastic-technologies/shortuuid/";
license = licenses.bsd3;
maintainers = with maintainers; [ zagy ];
};
}