uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
27
pkgs/development/python-modules/psd-tools/default.nix
Normal file
27
pkgs/development/python-modules/psd-tools/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, isPy27
|
||||
, docopt
|
||||
, pillow
|
||||
, enum34
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "psd-tools";
|
||||
version = "1.9.18";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "d7e510790512f0bb8150c508531c8681c3d9d0ea63b3ba9b11bbf0952cbd69a8";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
docopt
|
||||
pillow
|
||||
] ++ lib.optionals isPy27 [ enum34 ];
|
||||
|
||||
meta = {
|
||||
description = "Python package for reading Adobe Photoshop PSD files";
|
||||
homepage = "https://github.com/kmike/psd-tools";
|
||||
license = lib.licenses.mit;
|
||||
broken = true; # missing packbits from nixpkgs
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue