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
25
pkgs/development/python-modules/JayDeBeApi/default.nix
Normal file
25
pkgs/development/python-modules/JayDeBeApi/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, JPype1
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "JayDeBeApi";
|
||||
version = "1.2.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "f25e9307fbb5960cb035394c26e37731b64cc465b197c4344cee85ec450ab92f";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
JPype1
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/baztian/jaydebeapi";
|
||||
license = licenses.lgpl2;
|
||||
description = "Use JDBC database drivers from Python 2/3 or Jython with a DB-API";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue