nixpkgs/pkgs/development/python-modules/django-picklefield/default.nix
Frederik Rietdijk ced21f5e1a pythonPackages: remove name attribute`
The `buildPython*` function computes name from `pname` and `version`.
This change removes `name` attribute from all expressions in
`pkgs/development/python-modules`.

While at it, some other minor changes were made as well, such as
replacing `fetchurl` calls with `fetchPypi`.
2018-06-23 18:14:26 +02:00

18 lines
420 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "django-picklefield";
version = "1.0.0";
meta = {
description = "A pickled object field for Django";
homepage = https://github.com/gintas/django-picklefield;
license = lib.licenses.mit;
};
src = fetchPypi {
inherit pname version;
sha256 = "61e3ba7f6df82d8df9e6be3a8c55ef589eb3bf926c3d25d2b7949b07eae78354";
};
}