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
28
pkgs/development/python-modules/GeoIP/default.nix
Normal file
28
pkgs/development/python-modules/GeoIP/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{lib, buildPythonPackage, fetchPypi
|
||||
, geoip, nose}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "GeoIP";
|
||||
version = "1.3.2";
|
||||
|
||||
checkInputs = [ nose ];
|
||||
propagatedBuildInputs = [
|
||||
geoip
|
||||
];
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1rphxf3vrn8wywjgr397f49s0s22m83lpwcq45lm0h2p45mdm458";
|
||||
};
|
||||
|
||||
# Tests cannot be run because they require data that isn't included in the
|
||||
# release tarball.
|
||||
checkPhase = "true";
|
||||
|
||||
meta = {
|
||||
description = "MaxMind GeoIP Legacy Database - Python API";
|
||||
homepage = "https://www.maxmind.com/";
|
||||
maintainers = with lib.maintainers; [ jluttine ];
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue