18 lines
488 B
Nix
18 lines
488 B
Nix
{ lib, buildPythonPackage, fetchPypi,
|
|
django }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jsonfield";
|
|
version = "2.0.2";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0d5qmjja31rgcj524qy8x527fx81dj1cpvys68f3bmnna14cvcdy";
|
|
};
|
|
propagatedBuildInputs = [ django ];
|
|
meta = {
|
|
description = "A reusable Django field that allows you to store validated JSON in your model.";
|
|
maintainers = with lib.maintainers; [ schmittlauch ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|