ced21f5e1a
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`.
22 lines
470 B
Nix
22 lines
470 B
Nix
{ lib, buildPythonPackage, fetchPypi,
|
|
docopt, pillow
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "psd-tools";
|
|
version = "1.4";
|
|
|
|
meta = {
|
|
description = "Python package for reading Adobe Photoshop PSD files";
|
|
homepage = https://github.com/kmike/psd-tools;
|
|
license = lib.licenses.mit;
|
|
};
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0g2vss5hwlk96w0yj42n7ia56mly51n92f2rlbrifhn8hfbxd38s";
|
|
};
|
|
|
|
propagatedBuildInputs = [ docopt pillow ];
|
|
}
|