1
0

package nerd

This commit is contained in:
Ember 'n0emis' Keske
2022-07-12 11:04:14 +02:00
parent 33e9ba8725
commit 517ac86a3c
7 changed files with 215 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
{ lib
, buildPythonPackage
, fetchPypi
, django
}:
buildPythonPackage rec {
pname = "Django-Verify-Email";
version = "1.0.9";
src = fetchPypi {
inherit pname version;
sha256 = "05d296a6a7ef03db07327b076093373e086d9e76e7fa9970a033e4e01168197f";
};
buildInputs = [
django
];
doCheck = false;
}