1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, pep8
5}:
6
7buildPythonPackage rec {
8 pname = "shortuuid";
9 version = "0.5.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "d08fd398f40f8baf87e15eef8355e92fa541bca4eb8465fefab7ee22f92711b9";
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}