My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/shortuuid/default.nix

32 lines
600 B

{ lib
, buildPythonPackage
, isPy3k
, fetchPypi
, django
, pep8
}:
buildPythonPackage rec {
pname = "shortuuid";
version = "1.0.8";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "9435e87e5a64f3b92f7110c81f989a3b7bdb9358e22d2359829167da476cfc23";
};
checkInputs = [
django
pep8
];
meta = with 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 ];
};
}