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/thespian/default.nix
Normal file
25
pkgs/development/python-modules/thespian/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ fetchPypi, buildPythonPackage, lib }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "3.10.6";
|
||||
pname = "thespian";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "zip";
|
||||
sha256 = "c987a8042ba2303e22371f38a67354593dd81c4c11ba1eba7f6657409288d5ed";
|
||||
};
|
||||
|
||||
# Do not run the test suite: it takes a long time and uses
|
||||
# significant system resources, including requiring localhost
|
||||
# network operations. Thespian tests are performed via its Travis
|
||||
# CI configuration and do not need to be duplicated here.
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python Actor concurrency library";
|
||||
homepage = "http://thespianpy.com/";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.kquick ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue