pythonPackages.shortuuid: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
faf3a7cc02
commit
283eb6f7d1
25
pkgs/development/python-modules/shortuuid/default.nix
Normal file
25
pkgs/development/python-modules/shortuuid/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pep8
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "shortuuid";
|
||||
version = "0.4.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "4606dbb19124d98109c00e2cafae2df8117aec02115623e18fb2abe3f766d293";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user