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
23
pkgs/development/python-modules/py-sonic/default.nix
Normal file
23
pkgs/development/python-modules/py-sonic/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, isPy27 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "py-sonic";
|
||||
version = "0.7.9";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1677b7287914567b5123de90ad872b441628d8a7777cf4a5f41671b813facf75";
|
||||
};
|
||||
|
||||
# package has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "libsonic" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/crustymonkey/py-sonic";
|
||||
description = "A python wrapper library for the Subsonic REST API";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ wenngle ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue