1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pep8
5}:
6
7buildPythonPackage rec {
8 pname = "shortuuid";
9 version = "1.0.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "3c11d2007b915c43bee3e10625f068d8a349e04f0d81f08f5fa08507427ebf1f";
14 };
15
16 buildInputs = [pep8];
17
18 meta = with stdenv.lib; {
19 description = "A generator library for concise, unambiguous and URL-safe UUIDs";
20 homepage = "https://github.com/stochastic-technologies/shortuuid/";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ zagy ];
23 };
24
25}