2018-10-26 19:20:02 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pep8
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "shortuuid";
|
2020-06-06 08:47:31 +02:00
|
|
|
version = "1.0.1";
|
2018-10-26 19:20:02 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 08:47:31 +02:00
|
|
|
sha256 = "3c11d2007b915c43bee3e10625f068d8a349e04f0d81f08f5fa08507427ebf1f";
|
2018-10-26 19:20:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [pep8];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A generator library for concise, unambiguous and URL-safe UUIDs";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/stochastic-technologies/shortuuid/";
|
2018-10-26 19:20:02 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ zagy ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|